Skip to content

Commit

Permalink
ci: upgrade to actions/checkout@v4
Browse files Browse the repository at this point in the history
GitHub CI warns: "Node.js 16 actions are deprecated. Please update the
following actions to use Node.js 20: actions/checkout@v3,
codecov/codecov-action@v3. For more information see:
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/."

So upgrade actions/checkout@v3 to actions/checkout@v4.

Signed-off-by: Benjamin Drung <[email protected]>
  • Loading branch information
bdrung authored and schopin-pro committed Oct 25, 2023
1 parent 917c562 commit f649c3b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
container:
image: ${{ matrix.container }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update
Expand All @@ -49,7 +49,7 @@ jobs:
container:
image: ${{ matrix.container }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update
Expand All @@ -76,7 +76,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Remove system installed Apport
run: >
sudo apt-get remove --purge --yes
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
image: ${{ matrix.container }}
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Remove system installed Apport
run: >
sudo apt-get remove --purge --yes
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
container:
image: ${{ matrix.container }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
image: ${{ matrix.container }}
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Enable 'deb-src' URIs in /etc/apt/sources.list
run: sed -i '/^#\sdeb-src /s/^#\s//' /etc/apt/sources.list
- name: Install dependencies
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Remove system installed Apport
run: >
sudo apt-get remove --purge --yes
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
name: woke
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: woke
uses: get-woke/woke-action@v0
Expand Down

0 comments on commit f649c3b

Please sign in to comment.