From dab53526c07d8b4df5856828202360f5bc5771fb Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Tue, 28 Feb 2023 23:37:35 -0500 Subject: [PATCH] ci: update deprecated node12-based actions https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12 --- .github/workflows/publish.yaml | 2 +- .github/workflows/spread.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 23e4c4c566..feeded7e98 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -20,7 +20,7 @@ jobs: - if: steps.decisions.outputs.PUBLISH == 'true' name: Checkout Snapcraft - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Fetch all of history so Snapcraft can determine its own version from git. fetch-depth: 0 diff --git a/.github/workflows/spread.yml b/.github/workflows/spread.yml index 3d4a873b1e..a3850b27b3 100644 --- a/.github/workflows/spread.yml +++ b/.github/workflows/spread.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout snapcraft - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -17,7 +17,7 @@ jobs: uses: snapcore/action-build@v1 - name: Upload snapcraft snap - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: snap path: ${{ steps.build-snapcraft.outputs.snap }} @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout snapcraft - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: true @@ -94,7 +94,7 @@ jobs: - if: steps.decisions.outputs.RUN == 'true' name: Checkout snapcraft - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 submodules: true