Skip to content

Commit 133b0ac

Browse files
chore(deps): update actions/checkout action to v6
1 parent 6549521 commit 133b0ac

18 files changed

+26
-26
lines changed

.github/workflows/_static_analysis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
name: Run all static analysis checks
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
# Checkout to coreint-automation repo for using .golangci.yml in golangci-lint-action
1313
- name: Checkout coreint-automation repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
repository: newrelic/coreint-automation
1717
ref: v3

.github/workflows/_test_build_fake_prerelease.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Test binary compilation for all platforms:arch
2929
runs-on: ubuntu-22.04
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- run: |
3333
git tag "$TAG"
3434
if [ -z "$GPG_PASSPHRASE" ]; then
@@ -51,7 +51,7 @@ jobs:
5151
goarch: ${{ fromJSON(inputs.goarch_matrix) }}
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555
- shell: bash
5656
run: git tag "$TAG"
5757
- name: Download artifact from previous job

.github/workflows/_test_build_nix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
env:
1111
TAG: "v0.0.0"
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Build all platforms:arch
1515
run: make ci/build

.github/workflows/_test_integration_nix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: Install Go
1414
uses: actions/setup-go@v5
1515
with:

.github/workflows/_test_nix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
name: Run unit tests on *Nix
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
- name: Unit tests
1313
run: make ci/test

.github/workflows/_test_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: windows-2022
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: Install Go
1414
uses: actions/setup-go@v5
1515
with:

.github/workflows/block.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Allows github.token to push commit
1616
contents: write
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
with:
2020
ref: ${{ env.BRANCH }}
2121
- name: remove unblock file

.github/workflows/build_publish_builder_image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Set up Docker Buildx
2323
uses: docker/setup-buildx-action@v2

.github/workflows/daily_releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
contents: read
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ env.BRANCH }}
3939

.github/workflows/on_push_pr.yaml

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
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Install Renovatebot config validator
2020
run: npm install --global renovate

0 commit comments

Comments
 (0)