From ea751a9fae12fc5267ceb93f51622421afc5e87b Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 30 Mar 2022 19:43:04 +0100 Subject: [PATCH] Update other Actions from v2 to v3 --- .github/workflows/__debug-artifacts.yml | 2 +- .github/workflows/__go-custom-queries.yml | 2 +- .github/workflows/__go-custom-tracing-autobuild.yml | 2 +- .github/workflows/__go-custom-tracing.yml | 2 +- .github/workflows/post-release-mergeback.yml | 2 +- .github/workflows/pr-checks.yml | 4 ++-- .github/workflows/python-deps.yml | 2 +- .github/workflows/update-release-branch.yml | 2 +- .../workflows/update-supported-enterprise-server-versions.yml | 2 +- pr-checks/checks/debug-artifacts.yml | 2 +- pr-checks/checks/go-custom-queries.yml | 2 +- pr-checks/checks/go-custom-tracing-autobuild.yml | 2 +- pr-checks/checks/go-custom-tracing.yml | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/__debug-artifacts.yml b/.github/workflows/__debug-artifacts.yml index fcf4acef48..a1537815e3 100644 --- a/.github/workflows/__debug-artifacts.yml +++ b/.github/workflows/__debug-artifacts.yml @@ -71,7 +71,7 @@ jobs: run: ./build.sh - uses: ./../action/analyze id: analysis - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: my-debug-artifacts-${{ matrix.os }}-${{ matrix.version }} - shell: bash diff --git a/.github/workflows/__go-custom-queries.yml b/.github/workflows/__go-custom-queries.yml index bb3d424f5c..49e7c0f28b 100644 --- a/.github/workflows/__go-custom-queries.yml +++ b/.github/workflows/__go-custom-queries.yml @@ -76,7 +76,7 @@ jobs: uses: ./.github/prepare-test with: version: ${{ matrix.version }} - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ^1.13.1 - uses: ./../action/init diff --git a/.github/workflows/__go-custom-tracing-autobuild.yml b/.github/workflows/__go-custom-tracing-autobuild.yml index 64c8c8a97e..a6c9938191 100644 --- a/.github/workflows/__go-custom-tracing-autobuild.yml +++ b/.github/workflows/__go-custom-tracing-autobuild.yml @@ -60,7 +60,7 @@ jobs: uses: ./.github/prepare-test with: version: ${{ matrix.version }} - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ^1.13.1 - uses: ./../action/init diff --git a/.github/workflows/__go-custom-tracing.yml b/.github/workflows/__go-custom-tracing.yml index d420c7a23e..bf5e1e4a22 100644 --- a/.github/workflows/__go-custom-tracing.yml +++ b/.github/workflows/__go-custom-tracing.yml @@ -76,7 +76,7 @@ jobs: uses: ./.github/prepare-test with: version: ${{ matrix.version }} - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ^1.13.1 - uses: ./../action/init diff --git a/.github/workflows/post-release-mergeback.yml b/.github/workflows/post-release-mergeback.yml index be8ccb76f4..eb499f453b 100644 --- a/.github/workflows/post-release-mergeback.yml +++ b/.github/workflows/post-release-mergeback.yml @@ -35,7 +35,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 - name: Update git config run: | diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 59c6fc1627..722c71f4dd 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -75,7 +75,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: 3.8 - name: Install dependencies @@ -253,7 +253,7 @@ jobs: & $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false - name: Upload tracer logs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: tracer-logs path: ./codeql-runner/compound-build-tracer.log diff --git a/.github/workflows/python-deps.yml b/.github/workflows/python-deps.yml index 2c6f7ef382..f9e35324bd 100644 --- a/.github/workflows/python-deps.yml +++ b/.github/workflows/python-deps.yml @@ -124,7 +124,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python_version }} diff --git a/.github/workflows/update-release-branch.yml b/.github/workflows/update-release-branch.yml index 19ca750ed6..831fd028e2 100644 --- a/.github/workflows/update-release-branch.yml +++ b/.github/workflows/update-release-branch.yml @@ -29,7 +29,7 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: 3.8 diff --git a/.github/workflows/update-supported-enterprise-server-versions.yml b/.github/workflows/update-supported-enterprise-server-versions.yml index 8f18c43bb1..f329bba3b4 100644 --- a/.github/workflows/update-supported-enterprise-server-versions.yml +++ b/.github/workflows/update-supported-enterprise-server-versions.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: "3.7" - name: Checkout CodeQL Action diff --git a/pr-checks/checks/debug-artifacts.yml b/pr-checks/checks/debug-artifacts.yml index e1023de321..3c42dd47ba 100644 --- a/pr-checks/checks/debug-artifacts.yml +++ b/pr-checks/checks/debug-artifacts.yml @@ -13,7 +13,7 @@ steps: run: ./build.sh - uses: ./../action/analyze id: analysis - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: my-debug-artifacts-${{ matrix.os }}-${{ matrix.version }} - shell: bash diff --git a/pr-checks/checks/go-custom-queries.yml b/pr-checks/checks/go-custom-queries.yml index c17b9348a8..ba59880cd2 100644 --- a/pr-checks/checks/go-custom-queries.yml +++ b/pr-checks/checks/go-custom-queries.yml @@ -1,7 +1,7 @@ name: "Go: Custom queries" description: "Checks that Go works in conjunction with a config file specifying custom queries" steps: - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: "^1.13.1" - uses: ./../action/init diff --git a/pr-checks/checks/go-custom-tracing-autobuild.yml b/pr-checks/checks/go-custom-tracing-autobuild.yml index 03da58a0c1..cb42778eb7 100644 --- a/pr-checks/checks/go-custom-tracing-autobuild.yml +++ b/pr-checks/checks/go-custom-tracing-autobuild.yml @@ -4,7 +4,7 @@ os: ["ubuntu-latest", "macos-latest"] env: CODEQL_EXTRACTOR_GO_BUILD_TRACING: "true" steps: - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: "^1.13.1" - uses: ./../action/init diff --git a/pr-checks/checks/go-custom-tracing.yml b/pr-checks/checks/go-custom-tracing.yml index d503134925..dde7f4d3a6 100644 --- a/pr-checks/checks/go-custom-tracing.yml +++ b/pr-checks/checks/go-custom-tracing.yml @@ -3,7 +3,7 @@ description: "Checks that Go tracing works" env: CODEQL_EXTRACTOR_GO_BUILD_TRACING: "true" steps: - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: "^1.13.1" - uses: ./../action/init