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 4 updates #561

Merged
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
28 changes: 14 additions & 14 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
name: Unit Tests
steps:
- name: Checkout Governance Policy Propagator
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-propagator

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

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
make test-coverage

- name: Upload Unit Test Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_unit
path: governance-policy-propagator/coverage_unit.out
Expand All @@ -79,7 +79,7 @@ jobs:
name: KinD tests
steps:
- name: Checkout Governance Policy Propagator
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-propagator

Expand All @@ -100,7 +100,7 @@ jobs:

- name: Upload E2E Test Coverage
if: ${{ matrix.kind == 'latest'}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_e2e
path: governance-policy-propagator/coverage_e2e.out
Expand All @@ -111,7 +111,7 @@ jobs:

- name: Upload Compliance Events API Test Coverage
if: ${{ matrix.kind == 'latest'}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_e2e_compliance_events_api
path: governance-policy-propagator/coverage_e2e_compliance_events_api.out
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
name: PolicyAutomation tests
steps:
- name: Checkout Governance Policy Propagator
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-propagator

Expand All @@ -169,7 +169,7 @@ jobs:

- name: Upload PolicyAutomation Test Coverage
if: ${{ matrix.kind == 'latest'}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_e2e_policyautomation
path: governance-policy-propagator/coverage_e2e_policyautomation.out
Expand All @@ -194,25 +194,25 @@ jobs:

steps:
- name: Checkout Governance Policy Propagator
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download Unit Coverage Result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage_unit

- name: Download E2E Coverage Result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage_e2e

- name: Download Compliance Events Coverage Result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage_e2e_compliance_events_api

- name: Download PolicyAutomation Coverage Result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage_e2e_policyautomation

Expand All @@ -230,7 +230,7 @@ jobs:

- name: Upload artifacts for the sonarcloud workflow
if: github.repository_owner == 'stolostron'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upstream-refs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
name: Upstream reference checks
steps:
- name: Checkout propagator
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-propagator
fetch-depth: 0 # Fetch all history for all tags and branches

- name: Checkout Policy Framework
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: governance-policy-framework
repository: stolostron/governance-policy-framework
ref: ${{ github.event.pull_request.base.ref }}

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

Expand Down
Loading