Skip to content

Commit

Permalink
ci: upgrade to actions/checkout@v3
Browse files Browse the repository at this point in the history
It resolves the following warning:
Please update the following actions to use Node.js 16: actions/checkout
  • Loading branch information
LaszloGombos authored and aafeijoo-suse committed Nov 11, 2022
1 parent 33679ff commit 60c4b2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
- { dockerfile: 'Dockerfile-Gentoo', tag: 'gentoo:latest' }
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
options: "--privileged -v /dev:/dev"
steps:
- name: "Checkout Repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
options: "--privileged -v /dev:/dev"
steps:
- name: "Checkout Repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: install tools
run: sudo apt-get install astyle
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: shfmt
uses: luizm/action-sh-checker@v0.2.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check-out the repo under $GITHUB_WORKSPACE
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run Commisery
uses: dracutdevs/commisery-action@master
Expand Down

0 comments on commit 60c4b2f

Please sign in to comment.