From c61f8c3611d516fcc3de7133890153a358ae9c57 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 22 Dec 2023 19:07:09 +0800 Subject: [PATCH] GH actions: bump action versions --- .github/workflows/base.yml | 2 +- .github/workflows/runtime.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index f21c2b9..ffe2e68 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -10,7 +10,7 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Log into Github registry run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index b98fc87..62d1d1e 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -10,7 +10,7 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Log into Github registry run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin @@ -35,19 +35,19 @@ jobs: bzip2 artifacts/* - name: Upload curator executable - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: curator path: artifacts/curator.bz2 - name: Upload casa-curator executable - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: casa-curator path: artifacts/casa-curator.bz2 - name: Publish artifacts - uses: svenstaro/upload-release-action@v1-release + uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: artifacts/*