Skip to content

Commit 80a246f

Browse files
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 69fc957 commit 80a246f

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
go-version: 1.21.5
4848
id: go
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
with:
5151
path: src/github.com/goharbor/harbor
5252
- name: setup env
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
go-version: 1.21.5
109109
id: go
110-
- uses: actions/checkout@v3
110+
- uses: actions/checkout@v4
111111
with:
112112
path: src/github.com/goharbor/harbor
113113
- name: setup env
@@ -162,7 +162,7 @@ jobs:
162162
with:
163163
go-version: 1.21.5
164164
id: go
165-
- uses: actions/checkout@v3
165+
- uses: actions/checkout@v4
166166
with:
167167
path: src/github.com/goharbor/harbor
168168
- name: setup env
@@ -217,7 +217,7 @@ jobs:
217217
with:
218218
go-version: 1.21.5
219219
id: go
220-
- uses: actions/checkout@v3
220+
- uses: actions/checkout@v4
221221
with:
222222
path: src/github.com/goharbor/harbor
223223
- name: setup env
@@ -270,7 +270,7 @@ jobs:
270270
with:
271271
go-version: 1.21.5
272272
id: go
273-
- uses: actions/checkout@v3
273+
- uses: actions/checkout@v4
274274
with:
275275
path: src/github.com/goharbor/harbor
276276
- name: setup env
@@ -320,7 +320,7 @@ jobs:
320320
- uses: actions/setup-node@v4
321321
with:
322322
node-version: '18'
323-
- uses: actions/checkout@v3
323+
- uses: actions/checkout@v4
324324
with:
325325
path: src/github.com/goharbor/harbor
326326
- name: script

.github/workflows/build-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on:
1616
- ubuntu-20.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: 'google-github-actions/auth@v2'
2020
with:
2121
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
@@ -33,13 +33,13 @@ jobs:
3333
with:
3434
docker_version: 20.10
3535
docker_channel: stable
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- uses: jitterbit/get-changed-files@v1
3838
id: changed-files
3939
with:
4040
format: space-delimited
4141
token: ${{ secrets.GITHUB_TOKEN }}
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
with:
4444
path: src/github.com/goharbor/harbor
4545
- name: Build Base Image

.github/workflows/codeql-analysis.yml

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

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
# We must fetch at least the immediate parents so that if this is
1919
# a pull request then we can checkout the head.

.github/workflows/conformance_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
#- self-hosted
1818
- ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- id: 'auth'
2222
name: 'Authenticate to Google Cloud'
2323
uses: google-github-actions/auth@v2
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
go-version: 1.21.5
3232
id: go
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
with:
3535
path: src/github.com/goharbor/harbor
3636
- name: before_install

.github/workflows/nightly-trivy-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Run Trivy vulnerability scanner
2626
uses: aquasecurity/trivy-action@master
2727
with:

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
runs-on: ubuntu-20.04
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Setup env
1414
run: |
1515
echo "CUR_TAG=${{ github.ref_name }}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)