Skip to content

Commit 1b5ccdc

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-go](https://github.com/actions/setup-go). Updates `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) Updates `actions/setup-go` from 3 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7b8cf03 commit 1b5ccdc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/fossa.yml

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
steps:
1515
- name: Checkout Repo
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Run FOSSA Scan
1919
uses: fossas/fossa-action@v1

.github/workflows/go-postsubmit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: checkout code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 1
2727
path: go/src/open-cluster-management.io/governance-policy-framework-addon
2828
- name: install Go
29-
uses: actions/setup-go@v3
29+
uses: actions/setup-go@v5
3030
with:
3131
go-version-file: go/src/open-cluster-management.io/governance-policy-framework-addon/go.mod
3232
- name: images

.github/workflows/go-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 1
2424
path: go/src/open-cluster-management.io/governance-policy-framework-addon
2525
- name: install Go
26-
uses: actions/setup-go@v3
26+
uses: actions/setup-go@v5
2727
with:
2828
go-version-file: go/src/open-cluster-management.io/governance-policy-framework-addon/go.mod
2929
- name: build images

.github/workflows/kind.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
name: KinD tests
3434
steps:
3535
- name: Checkout Governance Policy Framework Addon
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
path: governance-policy-framework-addon
3939
fetch-depth: 0 # Fetch all history for all tags and branches
4040

4141
- name: Set up Go
42-
uses: actions/setup-go@v3
42+
uses: actions/setup-go@v5
4343
with:
4444
go-version-file: governance-policy-framework-addon/go.mod
4545

0 commit comments

Comments
 (0)