Skip to content

Commit daf88c7

Browse files
bump github actions to latest versions before node20 deprecation (#558)
I am making my contributions to this project solely in my personal capacity and am not conveying any rights to any intellectual property of any third parties.
1 parent 288636e commit daf88c7

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/build_docker_containers.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,32 +45,32 @@ jobs:
4545
platform: ${{ matrix.platform }}
4646

4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: '0' # need full history to get version from git tag
5151

5252
- name: Container metadata
5353
id: metadata
54-
uses: docker/metadata-action@v5
54+
uses: docker/metadata-action@v6
5555
with:
5656
images: ghcr.io/${{ steps.prep.outputs.repo_lowercase }}
5757

5858
- name: Set up QEMU
59-
uses: docker/setup-qemu-action@v3
59+
uses: docker/setup-qemu-action@v4
6060

6161
- name: Set up Docker Buildx
62-
uses: docker/setup-buildx-action@v3
62+
uses: docker/setup-buildx-action@v4
6363

6464
- name: Login to GitHub Container Registry
65-
uses: docker/login-action@v3
65+
uses: docker/login-action@v4
6666
with:
6767
registry: ghcr.io
6868
username: ${{ github.actor }}
6969
password: ${{ secrets.GITHUB_TOKEN }}
7070

7171
- name: Build and push by digest
7272
id: build
73-
uses: docker/build-push-action@v6
73+
uses: docker/build-push-action@v7
7474
with:
7575
platforms: ${{ matrix.platform }}
7676
cache-from: type=gha,scope=build-${{ steps.prep.outputs.platform_pair }}
@@ -85,7 +85,7 @@ jobs:
8585
touch "/tmp/digests/${digest#sha256:}"
8686
8787
- name: Upload digest
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v7
8989
with:
9090
name: digests-${{ steps.prep.outputs.platform_pair }}
9191
path: /tmp/digests/*
@@ -109,23 +109,23 @@ jobs:
109109
echo "repo_lowercase=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
110110
111111
- name: Download digests
112-
uses: actions/download-artifact@v4
112+
uses: actions/download-artifact@v8
113113
with:
114114
path: /tmp/digests
115115
pattern: digests-*
116116
merge-multiple: true
117117

118118
- name: Set up Docker Buildx
119-
uses: docker/setup-buildx-action@v3
119+
uses: docker/setup-buildx-action@v4
120120

121121
- name: Container metadata
122122
id: metadata
123-
uses: docker/metadata-action@v5
123+
uses: docker/metadata-action@v6
124124
with:
125125
images: ghcr.io/${{ steps.prep.outputs.repo_lowercase }}
126126

127127
- name: Login to GitHub Container Registry
128-
uses: docker/login-action@v3
128+
uses: docker/login-action@v4
129129
with:
130130
registry: ghcr.io
131131
username: ${{ github.actor }}

.github/workflows/ci_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: printenv | sort
2222

2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: '0' # need full history to get version from git tag
2727

.github/workflows/code_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: printenv | sort
1515

1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Install Clang Format
2020
run: sudo apt-get install clang-format-14

.github/workflows/platform_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: printenv | sort
3131

3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
fetch-depth: '0' # need full history to get version from git tag
3636

.github/workflows/version_bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write
1414
actions: write
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
ref: ${{ github.event.pull_request.merge_commit_sha }}
1919
fetch-depth: '0'

0 commit comments

Comments
 (0)