diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5be2fc8..a12dbf8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: open-turo/actions-gha/lint@v1 + - uses: open-turo/actions-gha/lint@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -19,7 +19,7 @@ jobs: needs: [test-upload, test-download] steps: # This test is for node-based actions, we want to test our actions - - uses: open-turo/actions-gha/test@v1 + - uses: open-turo/actions-gha/test@v2 with: checkout-repo: true github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8981018..4c9c73a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,7 +9,7 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: open-turo/actions-gha/lint@v1 + - uses: open-turo/actions-gha/lint@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -17,7 +17,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: open-turo/actions-gha/test@v1 + - uses: open-turo/actions-gha/test@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -28,6 +28,6 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - uses: open-turo/actions-gha/release@v1 + - uses: open-turo/actions-gha/release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}