Skip to content

Commit

Permalink
Merge pull request #3400 from opencontainers/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/actions/checkout-3

build(deps): bump actions/checkout from 2 to 3
  • Loading branch information
kolyshkin committed Mar 7, 2022
2 parents f7bce6b + a43485c commit ec9e81b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:

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

- name: install deps
if: matrix.criu == ''
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
steps:

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

- name: install deps
run: |
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install deps
run: |
sudo apt -q update
Expand All @@ -30,7 +30,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install deps
run: |
sudo apt -q update
Expand All @@ -49,7 +49,7 @@ jobs:
# Don't ignore C warnings. Note that the output of "go env CGO_CFLAGS" by default is "-g -O2", so we keep them.
CGO_CFLAGS: -g -O2 -Werror
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install go
uses: actions/setup-go@v2
with:
Expand All @@ -60,7 +60,7 @@ jobs:
codespell:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install deps
# Version of codespell bundled with Ubuntu is way old, so use pip.
run: pip install codespell
Expand All @@ -70,7 +70,7 @@ jobs:
shfmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: vars
run: |
echo "VERSION=3.3.1" >> $GITHUB_ENV
Expand All @@ -93,7 +93,7 @@ jobs:
shellcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: vars
run: |
echo 'VERSION=v0.8.0' >> $GITHUB_ENV
Expand All @@ -116,7 +116,7 @@ jobs:
deps:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install go
uses: actions/setup-go@v2
with:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install deps
Expand All @@ -173,7 +173,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
# We have to run this under Docker as Ubuntu (host) does not support all
Expand Down

0 comments on commit ec9e81b

Please sign in to comment.