From 18dca80616c7bf7e3959d0b3f73f848fdeb10fde Mon Sep 17 00:00:00 2001 From: tinyboxvk <13696594+tinyboxvk@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:06:10 -0400 Subject: [PATCH] Update Actions Signed-off-by: tinyboxvk <13696594+tinyboxvk@users.noreply.github.com> --- .github/workflows/android-app.yml | 16 ++++++------ .github/workflows/android-audit.yml | 6 ++--- .../workflows/android-kotlin-format-check.yml | 4 +-- .github/workflows/android-static-analysis.yml | 2 +- .../workflows/android-xml-format-check.yml | 4 +-- .github/workflows/check-changelog.yml | 2 +- .github/workflows/clippy.yml | 6 ++--- .github/workflows/daemon.yml | 8 +++--- .github/workflows/desktop-e2e.yml | 26 +++++++++---------- .github/workflows/frontend.yml | 2 +- .github/workflows/ios-build-xcode-16.yml | 2 +- .github/workflows/ios-rust-ffi.yml | 4 +-- .../workflows/ios-screenshots-creation.yml | 4 +-- .github/workflows/ios-screenshots-tests.yml | 2 +- .../workflows/ios-validate-build-schemas.yml | 2 +- .github/workflows/ios.yml | 6 ++--- .github/workflows/proto-format-check.yml | 2 +- .github/workflows/rust-supply-chain.yml | 2 +- .../workflows/rust-unused-dependencies.yml | 6 ++--- .github/workflows/rustfmt.yml | 2 +- .github/workflows/shellcheck.yml | 2 +- .github/workflows/testframework-clippy.yml | 4 +-- .../testframework-rust-supply-chain.yml | 2 +- .github/workflows/testframework-rustfmt.yml | 2 +- .github/workflows/testframework.yml | 8 +++--- .github/workflows/translations-converter.yml | 2 +- .github/workflows/translations.yml | 2 +- .github/workflows/unicode-check.yml | 2 +- .../verify-locked-down-signatures.yml | 2 +- .github/workflows/yamllint.yml | 2 +- 30 files changed, 68 insertions(+), 68 deletions(-) diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index bba09b5e9599..a016fad97e16 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -354,7 +354,7 @@ jobs: - name: Upload apks # Using v3 due to v4 being very slow for this artifact. - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: apks path: android/app/build/outputs/apk @@ -409,7 +409,7 @@ jobs: - name: Upload apks # Using v3 due to v4 being very slow for this artifact. - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.test-type }}-instrumentation-apks path: ${{ matrix.artifact-path }} @@ -445,14 +445,14 @@ jobs: uses: actions/checkout@v4 # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ matrix.test-repeat != 0 }} with: name: apks path: android/app/build/outputs/apk # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ matrix.test-repeat != 0 }} with: name: ${{ matrix.test-type }}-instrumentation-apks @@ -511,14 +511,14 @@ jobs: uses: actions/checkout@v4 # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ matrix.test-repeat != 0 }} with: name: apks path: android/app/build/outputs/apk # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ matrix.test-repeat != 0 }} with: name: e2e-instrumentation-apks @@ -574,13 +574,13 @@ jobs: uses: actions/checkout@v4 # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: apks path: android/app/build/outputs/apk # Using v3 due to v4 being very slow for this artifact. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ matrix.test-type }}-instrumentation-apks path: ${{ matrix.path }} diff --git a/.github/workflows/android-audit.yml b/.github/workflows/android-audit.yml index 1f45285aeef2..71ca477937d0 100644 --- a/.github/workflows/android-audit.yml +++ b/.github/workflows/android-audit.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} @@ -59,7 +59,7 @@ jobs: - name: Set locale run: echo "LC_ALL=C.UTF-8" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run gradle audit task run: android/gradlew -p android dependencyCheckAnalyze @@ -79,7 +79,7 @@ jobs: - name: Set locale run: echo "LC_ALL=C.UTF-8" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fix git dir run: git config --global --add safe.directory $(pwd) diff --git a/.github/workflows/android-kotlin-format-check.yml b/.github/workflows/android-kotlin-format-check.yml index 7fce9a108fe0..dec8d0325a74 100644 --- a/.github/workflows/android-kotlin-format-check.yml +++ b/.github/workflows/android-kotlin-format-check.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} @@ -44,7 +44,7 @@ jobs: - name: Fix HOME path run: echo "HOME=/root" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run ktfmt check run: android/gradlew -p android ktfmtCheck diff --git a/.github/workflows/android-static-analysis.yml b/.github/workflows/android-static-analysis.yml index b93b2a5c7838..a657807180e8 100644 --- a/.github/workflows/android-static-analysis.yml +++ b/.github/workflows/android-static-analysis.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Scan code uses: MobSF/mobsfscan@main diff --git a/.github/workflows/android-xml-format-check.yml b/.github/workflows/android-xml-format-check.yml index 4c4a1db46269..c53322fae614 100644 --- a/.github/workflows/android-xml-format-check.yml +++ b/.github/workflows/android-xml-format-check.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Resolve container image run: | echo "inner_container_image=$(cat ./building/android-container-image.txt)" >> $GITHUB_ENV @@ -34,7 +34,7 @@ jobs: - name: Fix HOME path run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run tidy shell: bash run: |- diff --git a/.github/workflows/check-changelog.yml b/.github/workflows/check-changelog.yml index e6205bde7f10..ab66a005400f 100644 --- a/.github/workflows/check-changelog.yml +++ b/.github/workflows/check-changelog.yml @@ -20,7 +20,7 @@ jobs: changelog: [CHANGELOG.md, ios/CHANGELOG.md, android/CHANGELOG.md] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: No lines must exceed ${{ env.LINE_LIMIT }} characters run: | awk 'length($0) > '$LINE_LIMIT' { print NR ": Line exceeds '$LINE_LIMIT' chars: " $0; found=1 } \ diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index d847602fb60a..5adfb7970abe 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} @@ -39,7 +39,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 @@ -92,7 +92,7 @@ jobs: run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: | diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index a0d793fa7f18..080cdee7b5d4 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} @@ -73,7 +73,7 @@ jobs: run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout submodules run: | @@ -91,7 +91,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: | @@ -121,7 +121,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Checkout submodules run: git submodule update --init --depth=1 diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index 6c1e5c99eecf..96acdc3c7e35 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} run: echo "inner_container_image=${{ github.event.inputs.override_container_image }}" @@ -119,7 +119,7 @@ jobs: - name: Fix HOME path run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout submodules run: | git config --global --add safe.directory '*' @@ -131,7 +131,7 @@ jobs: run: ./build.sh - name: Build test executable run: ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: linux-build @@ -154,7 +154,7 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.linux_matrix) }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ needs.build-linux.result == 'success' }} with: name: linux-build @@ -167,7 +167,7 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report @@ -210,7 +210,7 @@ jobs: - name: Build test executable shell: bash run: ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: windows-build @@ -230,7 +230,7 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.windows_matrix) }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ needs.build-windows.result == 'success' }} with: name: windows-build @@ -243,7 +243,7 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report @@ -285,7 +285,7 @@ jobs: run: ./build.sh - name: Build test executable run: ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: macos-build @@ -307,7 +307,7 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.macos_matrix) }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ needs.build-macos.result == 'success' }} with: name: macos-build @@ -320,7 +320,7 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report @@ -337,7 +337,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: path: ./test/.ci-logs/artifacts - name: Generate test result matrix @@ -348,7 +348,7 @@ jobs: cp ./.ci-logs/artifacts/*_report/*_report ./.ci-logs/ cargo run --bin test-manager format-test-reports ./.ci-logs/*_report \ | tee summary.html >> $GITHUB_STEP_SUMMARY - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: summary.html path: test/summary.html diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 5d7cec161136..8b80e3b5e04a 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: git submodule update --init --depth=1 wireguard-go-rs diff --git a/.github/workflows/ios-build-xcode-16.yml b/.github/workflows/ios-build-xcode-16.yml index e59acb6154cd..90a6b0077b6a 100644 --- a/.github/workflows/ios-build-xcode-16.yml +++ b/.github/workflows/ios-build-xcode-16.yml @@ -26,7 +26,7 @@ jobs: SOURCE_PACKAGES_PATH: .spm steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure cache uses: actions/cache@v3 diff --git a/.github/workflows/ios-rust-ffi.yml b/.github/workflows/ios-rust-ffi.yml index 512f9231ac18..07c52412a60d 100644 --- a/.github/workflows/ios-rust-ffi.yml +++ b/.github/workflows/ios-rust-ffi.yml @@ -18,7 +18,7 @@ jobs: target: [aarch64-apple-ios, aarch64-apple-ios-sim] steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 @@ -50,7 +50,7 @@ jobs: target: [aarch64-apple-ios, aarch64-apple-ios-sim] steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 diff --git a/.github/workflows/ios-screenshots-creation.yml b/.github/workflows/ios-screenshots-creation.yml index 257e5eb78911..5db94fda110f 100644 --- a/.github/workflows/ios-screenshots-creation.yml +++ b/.github/workflows/ios-screenshots-creation.yml @@ -21,7 +21,7 @@ jobs: TEST_ACCOUNT: ${{ secrets.IOS_TEST_ACCOUNT_NUMBER }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup go-lang uses: actions/setup-go@v3 @@ -65,7 +65,7 @@ jobs: working-directory: ios - name: Upload screenshot artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ios-screenshots path: ios/Screenshots diff --git a/.github/workflows/ios-screenshots-tests.yml b/.github/workflows/ios-screenshots-tests.yml index c4d027fb12f2..e510bcc35c4f 100644 --- a/.github/workflows/ios-screenshots-tests.yml +++ b/.github/workflows/ios-screenshots-tests.yml @@ -25,7 +25,7 @@ jobs: TEST_ACCOUNT: ${{ secrets.IOS_TEST_ACCOUNT_NUMBER }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure cache uses: actions/cache@v3 diff --git a/.github/workflows/ios-validate-build-schemas.yml b/.github/workflows/ios-validate-build-schemas.yml index 696483bb097d..12f15197d2d9 100644 --- a/.github/workflows/ios-validate-build-schemas.yml +++ b/.github/workflows/ios-validate-build-schemas.yml @@ -26,7 +26,7 @@ jobs: SOURCE_PACKAGES_PATH: .spm steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure cache uses: actions/cache@v3 diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 37eb333ecdd2..767790d9f192 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -23,7 +23,7 @@ jobs: brew upgrade swiftformat - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check formatting run: | @@ -36,7 +36,7 @@ jobs: runs-on: macos-13 steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run swiftlint run: | @@ -52,7 +52,7 @@ jobs: SOURCE_PACKAGES_PATH: .spm steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure cache uses: actions/cache@v3 diff --git a/.github/workflows/proto-format-check.yml b/.github/workflows/proto-format-check.yml index 4ca95e744f4b..70905c200573 100644 --- a/.github/workflows/proto-format-check.yml +++ b/.github/workflows/proto-format-check.yml @@ -12,7 +12,7 @@ jobs: check-formatting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run clang-format for proto files uses: jidicula/clang-format-action@v4.11.0 with: diff --git a/.github/workflows/rust-supply-chain.yml b/.github/workflows/rust-supply-chain.yml index 51cd512cef61..6756e36bc693 100644 --- a/.github/workflows/rust-supply-chain.yml +++ b/.github/workflows/rust-supply-chain.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: git submodule update --init --depth=1 wireguard-go-rs diff --git a/.github/workflows/rust-unused-dependencies.yml b/.github/workflows/rust-unused-dependencies.yml index 3c243b98d08d..69e253231bf3 100644 --- a/.github/workflows/rust-unused-dependencies.yml +++ b/.github/workflows/rust-unused-dependencies.yml @@ -18,7 +18,7 @@ jobs: prepare-containers: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fetch container image names run: | @@ -42,7 +42,7 @@ jobs: run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout submodules run: | @@ -74,7 +74,7 @@ jobs: run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: | diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml index 19c7b5331d30..85f88a667a14 100644 --- a/.github/workflows/rustfmt.yml +++ b/.github/workflows/rustfmt.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout wireguard-go submodule run: git submodule update --init --depth=1 wireguard-go-rs diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index a0fe536d1786..8d5a66c4cd26 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -11,7 +11,7 @@ jobs: name: Shellcheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run ShellCheck uses: ludeeus/action-shellcheck@2.0.0 with: diff --git a/.github/workflows/testframework-clippy.yml b/.github/workflows/testframework-clippy.yml index af0bac1aaac0..3ebd0fa27490 100644 --- a/.github/workflows/testframework-clippy.yml +++ b/.github/workflows/testframework-clippy.yml @@ -21,7 +21,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 @@ -54,7 +54,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 diff --git a/.github/workflows/testframework-rust-supply-chain.yml b/.github/workflows/testframework-rust-supply-chain.yml index 3e09ee5ed2b6..9abe79ad6a2c 100644 --- a/.github/workflows/testframework-rust-supply-chain.yml +++ b/.github/workflows/testframework-rust-supply-chain.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run cargo deny (test workspace) uses: EmbarkStudios/cargo-deny-action@v1 diff --git a/.github/workflows/testframework-rustfmt.yml b/.github/workflows/testframework-rustfmt.yml index 78045fc7442d..27996c6e2b70 100644 --- a/.github/workflows/testframework-rustfmt.yml +++ b/.github/workflows/testframework-rustfmt.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1.0.6 diff --git a/.github/workflows/testframework.yml b/.github/workflows/testframework.yml index cc9c597ded47..f8d729d27156 100644 --- a/.github/workflows/testframework.yml +++ b/.github/workflows/testframework.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use custom container image if specified if: ${{ github.event.inputs.override_container_image != '' }} @@ -66,7 +66,7 @@ jobs: run: apt update && apt install -y pkg-config libssl-dev libpcap-dev - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build test framework working-directory: test @@ -77,7 +77,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Protoc uses: arduino/setup-protoc@v3 @@ -109,7 +109,7 @@ jobs: run: echo "HOME=/root" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build test runner working-directory: test diff --git a/.github/workflows/translations-converter.yml b/.github/workflows/translations-converter.yml index 15023f973c4c..fc24845cc78f 100644 --- a/.github/workflows/translations-converter.yml +++ b/.github/workflows/translations-converter.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1.0.6 diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 61d2f5382748..7e0c7e7d46f7 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v4 diff --git a/.github/workflows/unicode-check.yml b/.github/workflows/unicode-check.yml index 09b9d8e26e32..407262ffdf45 100644 --- a/.github/workflows/unicode-check.yml +++ b/.github/workflows/unicode-check.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout submodules run: git submodule update --init --depth=1 dist-assets/binaries wireguard-go-rs diff --git a/.github/workflows/verify-locked-down-signatures.yml b/.github/workflows/verify-locked-down-signatures.yml index 915a54abb659..eee84bf2a769 100644 --- a/.github/workflows/verify-locked-down-signatures.yml +++ b/.github/workflows/verify-locked-down-signatures.yml @@ -33,7 +33,7 @@ jobs: verify-signatures: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Verify signatures diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index a23163a31112..eeeb1a867dc6 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -15,6 +15,6 @@ jobs: check-formatting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: sudo apt-get install yamllint - run: yamllint .