Skip to content

Commit 9e9693e

Browse files
authored
build(deps): bump actions/checkout from 4.2.0 to 4.2.1 (#348515)
2 parents 2493268 + f3143a7 commit 9e9693e

16 files changed

+20
-20
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.repository_owner == 'NixOS' && github.event.pull_request.merged == true && (github.event_name != 'labeled' || startsWith('backport', github.event.label.name))
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
23+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
- name: Create backport PRs

.github/workflows/basic-eval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
# we don't limit this action to only NixOS repo since the checks are cheap and useful developer feedback
2121
steps:
22-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
22+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2323
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2424
- uses: cachix/cachix-action@ad2ddac53f961de1989924296a1f236fcfbaa4fc # v15
2525
with:

.github/workflows/check-cherry-picks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: github.repository_owner == 'NixOS'
1616
steps:
17-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
17+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1818
with:
1919
fetch-depth: 0
2020
filter: blob:none

.github/workflows/check-maintainers-sorted.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
if: github.repository_owner == 'NixOS'
1515
steps:
16-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1717
with:
1818
# pull_request_target checks out the base branch by default
1919
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/check-nix-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: "!contains(github.event.pull_request.title, '[skip treewide]')"
2020
steps:
21-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
21+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2222
with:
2323
# pull_request_target checks out the base branch by default
2424
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/check-nixf-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: "!contains(github.event.pull_request.title, '[skip treewide]')"
1414
steps:
15-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
15+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1616
with:
1717
# pull_request_target checks out the base branch by default
1818
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/check-shell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: shell-check-x86_64-linux
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
13+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1414
with:
1515
# pull_request_target checks out the base branch by default
1616
ref: refs/pull/${{ github.event.pull_request.number }}/merge
@@ -22,7 +22,7 @@ jobs:
2222
name: shell-check-aarch64-darwin
2323
runs-on: macos-latest
2424
steps:
25-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
25+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2626
with:
2727
# pull_request_target checks out the base branch by default
2828
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/codeowners.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Important: Because we use pull_request_target, this checks out the base branch of the PR, not the PR itself.
3636
# We later build and run code from the base branch with access to secrets,
3737
# so it's important this is not the PRs code.
38-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
38+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
3939
with:
4040
path: base
4141

@@ -48,7 +48,7 @@ jobs:
4848
app-id: ${{ vars.OWNER_APP_ID }}
4949
private-key: ${{ secrets.OWNER_APP_PRIVATE_KEY }}
5050

51-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
51+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
5252
with:
5353
ref: refs/pull/${{ github.event.number }}/merge
5454
path: pr
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Important: Because we use pull_request_target, this checks out the base branch of the PR, not the PR head.
7474
# This is intentional, because we need to request the review of owners as declared in the base branch.
75-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
75+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
7676

7777
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
7878
id: app-token

.github/workflows/editorconfig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: print list of changed files
2626
run: |
2727
cat "$HOME/changed_files"
28-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
28+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2929
with:
3030
# pull_request_target checks out the base branch by default
3131
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/manual-nixos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: github.repository_owner == 'NixOS'
1717
steps:
18-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
18+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1919
with:
2020
# pull_request_target checks out the base branch by default
2121
ref: refs/pull/${{ github.event.pull_request.number }}/merge

0 commit comments

Comments
 (0)