Skip to content

Commit

Permalink
Update GitHub actions packages in CI workflow
Browse files Browse the repository at this point in the history
* actions/checkout and actions/setup-go from v2 to v3.

Signed-off-by: Austin Vazquez <macedonv@amazon.com>
  • Loading branch information
austinvazquez committed Nov 10, 2022
1 parent 6383351 commit f6a39e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.19

Expand All @@ -24,7 +24,7 @@ jobs:
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: src/github.com/containerd/imgcrypt
fetch-depth: 25
Expand All @@ -43,7 +43,7 @@ jobs:
os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: src/github.com/containerd/imgcrypt

Expand All @@ -70,16 +70,16 @@ jobs:
needs: [linters, checks]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: containerd/containerd
path: src/github.com/containerd/containerd

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: src/github.com/containerd/imgcrypt

- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}

Expand Down

0 comments on commit f6a39e1

Please sign in to comment.