From a339e73eb567f83b6bb3768f17f1f13d73990581 Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Wed, 10 Sep 2025 17:38:39 +0100 Subject: [PATCH] chore: Unify actions versions --- .forgejo/actions/sccache/action.yml | 2 +- .forgejo/actions/setup-llvm-with-apt/action.yml | 2 +- .forgejo/actions/setup-rust/action.yml | 6 +++--- .forgejo/workflows/documentation.yml | 2 +- .forgejo/workflows/element.yml | 2 +- .forgejo/workflows/mirror-images.yml | 2 +- .forgejo/workflows/prek-checks.yml | 4 ++-- .forgejo/workflows/release-image.yml | 4 ++-- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.forgejo/actions/sccache/action.yml b/.forgejo/actions/sccache/action.yml index b2441109..2c6efceb 100644 --- a/.forgejo/actions/sccache/action.yml +++ b/.forgejo/actions/sccache/action.yml @@ -9,7 +9,7 @@ runs: - name: Install sccache uses: https://git.tomfos.tr/tom/sccache-action@v1 - name: Configure sccache - uses: https://github.com/actions/github-script@v7 + uses: https://github.com/actions/github-script@v8 with: script: | core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || ''); diff --git a/.forgejo/actions/setup-llvm-with-apt/action.yml b/.forgejo/actions/setup-llvm-with-apt/action.yml index eb421e4f..b3c4bc45 100644 --- a/.forgejo/actions/setup-llvm-with-apt/action.yml +++ b/.forgejo/actions/setup-llvm-with-apt/action.yml @@ -57,7 +57,7 @@ runs: - name: Check for LLVM cache id: cache - uses: https://github.com/actions/cache@v4 + uses: actions/cache@v4 with: path: | /usr/bin/clang-* diff --git a/.forgejo/actions/setup-rust/action.yml b/.forgejo/actions/setup-rust/action.yml index a8736a75..43bfef4c 100644 --- a/.forgejo/actions/setup-rust/action.yml +++ b/.forgejo/actions/setup-rust/action.yml @@ -65,7 +65,7 @@ runs: - name: Cache Cargo registry and git id: registry-cache - uses: https://github.com/actions/cache@v4 + uses: actions/cache@v4 with: path: | .cargo/registry/index @@ -79,7 +79,7 @@ runs: - name: Cache toolchain binaries id: toolchain-cache - uses: https://github.com/actions/cache@v4 + uses: actions/cache@v4 with: path: | .cargo/bin @@ -94,7 +94,7 @@ runs: - name: Cache build artifacts id: build-cache - uses: https://github.com/actions/cache@v4 + uses: actions/cache@v4 with: path: | target/**/deps diff --git a/.forgejo/workflows/documentation.yml b/.forgejo/workflows/documentation.yml index 67c8a30c..4b15465a 100644 --- a/.forgejo/workflows/documentation.yml +++ b/.forgejo/workflows/documentation.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Sync repository - uses: https://github.com/actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false fetch-depth: 0 diff --git a/.forgejo/workflows/element.yml b/.forgejo/workflows/element.yml index 0199e8b6..2ff0ab37 100644 --- a/.forgejo/workflows/element.yml +++ b/.forgejo/workflows/element.yml @@ -101,7 +101,7 @@ jobs: cat ./element-web/webapp/config.json - name: 📤 Upload Artifact - uses: https://code.forgejo.org/actions/upload-artifact@v3 + uses: https://code.forgejo.org/actions/upload-artifact@v4 with: name: element-web path: ./element-web/webapp/ diff --git a/.forgejo/workflows/mirror-images.yml b/.forgejo/workflows/mirror-images.yml index 198832db..ca390b4a 100644 --- a/.forgejo/workflows/mirror-images.yml +++ b/.forgejo/workflows/mirror-images.yml @@ -26,7 +26,7 @@ jobs: GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false diff --git a/.forgejo/workflows/prek-checks.yml b/.forgejo/workflows/prek-checks.yml index 45288bef..14d118d5 100644 --- a/.forgejo/workflows/prek-checks.yml +++ b/.forgejo/workflows/prek-checks.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false @@ -47,7 +47,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false diff --git a/.forgejo/workflows/release-image.yml b/.forgejo/workflows/release-image.yml index 8505aa18..fa4cd23f 100644 --- a/.forgejo/workflows/release-image.yml +++ b/.forgejo/workflows/release-image.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Setting variables - uses: https://github.com/actions/github-script@v7 + uses: https://github.com/actions/github-script@v8 id: var with: script: | @@ -97,7 +97,7 @@ jobs: run: echo '${{ toJSON(matrix) }}' - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false - name: Install rust