chore: Unify actions versions

This commit is contained in:
Jade Ellis 2025-09-10 17:38:39 +01:00
commit a339e73eb5
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2
8 changed files with 12 additions and 12 deletions

View file

@ -9,7 +9,7 @@ runs:
- name: Install sccache - name: Install sccache
uses: https://git.tomfos.tr/tom/sccache-action@v1 uses: https://git.tomfos.tr/tom/sccache-action@v1
- name: Configure sccache - name: Configure sccache
uses: https://github.com/actions/github-script@v7 uses: https://github.com/actions/github-script@v8
with: with:
script: | script: |
core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || ''); core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || '');

View file

@ -57,7 +57,7 @@ runs:
- name: Check for LLVM cache - name: Check for LLVM cache
id: cache id: cache
uses: https://github.com/actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
/usr/bin/clang-* /usr/bin/clang-*

View file

@ -65,7 +65,7 @@ runs:
- name: Cache Cargo registry and git - name: Cache Cargo registry and git
id: registry-cache id: registry-cache
uses: https://github.com/actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
.cargo/registry/index .cargo/registry/index
@ -79,7 +79,7 @@ runs:
- name: Cache toolchain binaries - name: Cache toolchain binaries
id: toolchain-cache id: toolchain-cache
uses: https://github.com/actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
.cargo/bin .cargo/bin
@ -94,7 +94,7 @@ runs:
- name: Cache build artifacts - name: Cache build artifacts
id: build-cache id: build-cache
uses: https://github.com/actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
target/**/deps target/**/deps

View file

@ -21,7 +21,7 @@ jobs:
steps: steps:
- name: Sync repository - name: Sync repository
uses: https://github.com/actions/checkout@v4 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false
fetch-depth: 0 fetch-depth: 0

View file

@ -101,7 +101,7 @@ jobs:
cat ./element-web/webapp/config.json cat ./element-web/webapp/config.json
- name: 📤 Upload Artifact - name: 📤 Upload Artifact
uses: https://code.forgejo.org/actions/upload-artifact@v3 uses: https://code.forgejo.org/actions/upload-artifact@v4
with: with:
name: element-web name: element-web
path: ./element-web/webapp/ path: ./element-web/webapp/

View file

@ -26,7 +26,7 @@ jobs:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false

View file

@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false
@ -47,7 +47,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false

View file

@ -41,7 +41,7 @@ jobs:
steps: steps:
- name: Setting variables - name: Setting variables
uses: https://github.com/actions/github-script@v7 uses: https://github.com/actions/github-script@v8
id: var id: var
with: with:
script: | script: |
@ -97,7 +97,7 @@ jobs:
run: echo '${{ toJSON(matrix) }}' run: echo '${{ toJSON(matrix) }}'
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false
- name: Install rust - name: Install rust