ci: upgrade to actions/checkout@v3
This uses the new node 16 version (see [1]), which is the future proof version, since node 12 will be deprecated by summer 2023 (see [2]). [1] upstream commits:8f9e05e482a12a3943b4[2] https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
This commit is contained in:
parent
1ecc784386
commit
58bafaad98
4 changed files with 7 additions and 7 deletions
8
.github/workflows/checks.yml
vendored
8
.github/workflows/checks.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
pip install docutils
|
||||
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: osbuild
|
||||
|
||||
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Clone Repository"
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: "Regenerate Test Data"
|
||||
uses: osbuild/containers/src/actions/privdocker@1e349b1c69884f9f38f7afa567869b975104828c
|
||||
with:
|
||||
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
name: "Spell check"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: codespell-project/actions-codespell@master
|
||||
with:
|
||||
ignore_words_list: msdos, pullrequest
|
||||
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Clone Repository"
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: "Run Tests"
|
||||
uses: osbuild/containers/src/actions/privdocker@1e349b1c69884f9f38f7afa567869b975104828c
|
||||
with:
|
||||
|
|
|
|||
2
.github/workflows/coverity.yml
vendored
2
.github/workflows/coverity.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
steps:
|
||||
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: osbuild
|
||||
|
||||
|
|
|
|||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
- "test.src"
|
||||
steps:
|
||||
- name: "Clone Repository"
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 2 # codecov requires this (https://github.com/codecov/codecov-action/issues/190)
|
||||
- name: "Run Tests"
|
||||
|
|
|
|||
2
.github/workflows/trigger-gitlab.yml
vendored
2
.github/workflows/trigger-gitlab.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
sudo apt install -y jq
|
||||
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.event.workflow_run.head_sha }}
|
||||
fetch-depth: 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue