Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- minimal
- full
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Only fetch files we actually need:
fetch-depth: 0
Expand All @@ -51,7 +51,7 @@ jobs:
node-version: "20" # FIXME: this is very old and out-of-date. Bump the version!

- name: Use cached ~/.npm
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -65,7 +65,7 @@ jobs:
run: npm run preprocess-${{ matrix.variant }}

- name: Cache Docusaurus build
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/.docusaurus
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Only fetch files we actually need:
fetch-depth: 0
Expand All @@ -44,7 +44,7 @@ jobs:
node-version: "20" # FIXME: this is very old and out-of-date. Bump the version!

- name: Cache ~/.npm
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -57,7 +57,7 @@ jobs:
run: npm run preprocess-full

- name: Cache Docusaurus build
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/.docusaurus
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
url: https://github.com/${{ env.TARGET_REPO }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ env.RELEASE_CHANNEL }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
url: https://github.com/${{ env.TARGET_REPO }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ env.RELEASE_CHANNEL }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-pdfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-channel-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-channel-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
permissions:
contents: write
steps:
- uses: lewagon/wait-on-check-action@v1.7.0
- uses: lewagon/wait-on-check-action@v1.8.0
with:
ref: ${{ github.ref }}
check-name: 'build (full)'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- uses: lewagon/wait-on-check-action@v1.7.0
- uses: lewagon/wait-on-check-action@v1.8.0
with:
ref: ${{ github.ref }}
check-name: 'deploy'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-channel-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
permissions:
contents: write
steps:
- uses: lewagon/wait-on-check-action@v1.7.0
- uses: lewagon/wait-on-check-action@v1.8.0
with:
ref: ${{ github.ref }}
check-name: 'build (full)'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- uses: lewagon/wait-on-check-action@v1.7.0
- uses: lewagon/wait-on-check-action@v1.8.0
with:
ref: ${{ github.ref }}
check-name: 'deploy'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down