Skip to content

Bump actions/checkout from 4 to 5 #2890

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: install
run: |
rustup override set stable
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
sqlx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# We check that all github actions workflows have valid syntax
- name: Validate YAML file
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
SQLX_OFFLINE: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
GUI_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: update rust toolchain
run: rustup component add rustfmt

Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: update rust toolchain
run: rustup component add clippy
Expand All @@ -169,7 +169,7 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: denoland/setup-deno@v2
- name: install `just`
run: sudo snap install --edge --classic just
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-sqlx-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
outputs:
output1: $
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: install `just`
run: sudo snap install --edge --classic just
Expand Down Expand Up @@ -73,7 +73,7 @@
OUTPUT1: $
steps:
- name: Open pull request
if: ${{ OUTPUT1 == 'need_or' }}

Check failure on line 76 in .github/workflows/commit-sqlx-changes.yml

View workflow job for this annotation

GitHub Actions / sqlx

undefined variable "OUTPUT1". available variables are "env", "github", "inputs", "job", "matrix", "needs", "runner", "secrets", "steps", "strategy", "vars"
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update SQLX files
Expand All @@ -83,6 +83,6 @@
title: Update SQLX files
delete-branch: true
branch: update-sqlx-pr-${{ github.event.pull_request.number }}
title: Update SQLX files after #${{ github.event.pull_request.number }} changes

Check failure on line 86 in .github/workflows/commit-sqlx-changes.yml

View workflow job for this annotation

GitHub Actions / sqlx

key "title" is duplicated in "with" section. previously defined at line:83,col:11. note that this key is case insensitive
body: |
Following #${{ github.event.pull_request.number }} changes, here are the related SQLX files changes.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build and upload docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build the Docker image
run: docker build -t docs-rs-web -f dockerfiles/Dockerfile --target web-server .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build the Docker image
run: docker build -t docs-rs-web -f dockerfiles/Dockerfile --target web-server .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Test docker image builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build the Docker image
run: docker build -t docs-rs -f dockerfiles/Dockerfile .
Loading