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

Bump the github-actions group with 2 updates #113

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/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run FOSSA Scan
uses: fossas/fossa-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-postsubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
path: go/src/open-cluster-management.io/governance-policy-framework-addon
- name: install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: go/src/open-cluster-management.io/governance-policy-framework-addon/go.mod
- name: images
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
path: go/src/open-cluster-management.io/governance-policy-framework-addon
- name: install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: go/src/open-cluster-management.io/governance-policy-framework-addon/go.mod
- name: build images
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
name: KinD tests
steps:
- name: Checkout Governance Policy Framework Addon
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-framework-addon
fetch-depth: 0 # Fetch all history for all tags and branches

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: governance-policy-framework-addon/go.mod

Expand Down
Loading