Skip to content
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

Update actions/checkout to v4 #1214

Merged
merged 1 commit into from
Oct 1, 2024
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/build-aarch64-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-aarch64-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-x86_64-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-x86_64-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check Nixpkgs input
uses: DeterminateSystems/flake-checker-action@main
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -399,7 +399,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -517,7 +517,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -607,7 +607,7 @@ jobs:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches:
# NOTE: make sure any branches here are also valid directory names,
# otherwise creating the directory and uploading to s3 will fail
- 'main'
- "main"

permissions:
id-token: "write"
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- build-aarch64-darwin
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create artifacts directory
run: mkdir -p ./artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- build-aarch64-darwin
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create artifacts directory
run: mkdir -p ./artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- build-aarch64-darwin
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create artifacts directory
run: mkdir -p ./artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
contents: "read"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Run `nix build`
Expand Down
Loading