Skip to content

Commit f6a408e

Browse files
committed
⬆️(ci) upgrade GitHub Actions workflow steps to latest versions
Update all GitHub Actions to their latest major versions for improved performance, security patches, and Node.js runtime compatibility. Signed-off-by: Stephan Meijer <me@stephanmeijer.com>
1 parent 2c09055 commit f6a408e

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
-
15-
uses: actions/create-github-app-token@v1
15+
uses: actions/create-github-app-token@v2
1616
id: app-token
1717
with:
1818
app-id: ${{ secrets.APP_ID }}
@@ -21,7 +21,7 @@ jobs:
2121
repositories: "drive,secrets"
2222
-
2323
name: Checkout repository
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v6
2525
with:
2626
submodules: recursive
2727
token: ${{ steps.app-token.outputs.token }}

.github/workflows/docker-hub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
-
2222
name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
-
2525
name: Docker meta
2626
id: meta

.github/workflows/find.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.event_name == 'pull_request' # Makes sense only for pull requests
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
- name: show
@@ -37,7 +37,7 @@ jobs:
3737
github.event_name == 'pull_request'
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v6
4141
with:
4242
fetch-depth: 50
4343
- name: Check that the CHANGELOG has been modified in the current branch
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v2
50+
uses: actions/checkout@v6
5151
- name: Check CHANGELOG max line length
5252
run: |
5353
max_line_length=$(cat CHANGELOG.md | grep -Ev "^\[.*\]: https://github.com" | wc -L)
@@ -131,7 +131,7 @@ jobs:
131131

132132
steps:
133133
- name: Checkout repository
134-
uses: actions/checkout@v4
134+
uses: actions/checkout@v6
135135

136136
- name: Create writable /data
137137
run: |

.github/workflows/release-helm-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

0 commit comments

Comments
 (0)