Skip to content

Commit

Permalink
.github/workflows: update actions/checkout to v3
Browse files Browse the repository at this point in the history
To resolve actions/checkout#1048.

Signed-off-by: Mateusz Gozdek <mgozdek@microsoft.com>
  • Loading branch information
invidian committed Feb 23, 2023
1 parent f45ff7c commit 0fc89c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run CI checks
run: make ci
Expand All @@ -29,7 +29,7 @@ jobs:
timeout-minutes: 10
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run lint
run: make lint check-update-linters

Expand All @@ -39,7 +39,7 @@ jobs:
timeout-minutes: 5
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Codespell test
uses: codespell-project/actions-codespell@master
with:
Expand All @@ -55,7 +55,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Test building Docker image
run: make image
Expand All @@ -67,7 +67,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
Expand All @@ -86,7 +86,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Test rendering manifests using kustomize
run: make build-kustomize
Expand All @@ -96,7 +96,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Use dedicated action for nice integration with GitHub.
- uses: returntocorp/semgrep-action@v1
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -24,7 +24,7 @@ jobs:
flavor: latest=false

- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup QEMU
uses: docker/setup-qemu-action@v1
Expand Down

0 comments on commit 0fc89c5

Please sign in to comment.