Skip to content

Commit be5c9a3

Browse files
committed
Update Github Actions
1 parent 0c41809 commit be5c9a3

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/autotag.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- name: Check pull request
3434
id: check-pr
35-
uses: actions/github-script@v7
35+
uses: actions/github-script@v8
3636
with:
3737
retries: 3
3838
script: |
@@ -87,28 +87,28 @@ jobs:
8787
core.setOutput('PULL_SHA', pullSHA)
8888
8989
- name: Checkout code
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
9191
if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }}
9292
with:
9393
fetch-depth: 0 # Ref: https://github.com/actions/checkout/issues/100
9494

9595
- name: Get current tag
9696
id: current-tag
97-
uses: "WyriHaximus/github-action-get-previous-tag@04e8485ecb6487243907e330d522ff60f02283ce" # v1.4.0 - latest as of 2025-04-27
97+
uses: "WyriHaximus/github-action-get-previous-tag@61819f33034117e6c686e6a31dba995a85afc9de" # v2.0.0 - latest as of 2026-03-21
9898
if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }}
9999
with:
100100
fallback: v0.0.0
101101

102102
- name: Determine next semver version
103103
id: next-semver-version
104-
uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2025-04-27
104+
uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2026-03-21
105105
if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }}
106106
with:
107107
version: ${{ steps.current-tag.outputs.tag }}
108108

109109
- name: Determine next tag
110110
id: next-tag
111-
uses: actions/github-script@v7
111+
uses: actions/github-script@v8
112112
if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }}
113113
with:
114114
script: |
@@ -141,7 +141,7 @@ jobs:
141141
steps:
142142
- name: Create tag
143143
id: create-tag
144-
uses: actions/github-script@v7
144+
uses: actions/github-script@v8
145145
with:
146146
github-token: ${{ secrets.PAT_WORKFLOW }}
147147
retries: 3

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- name: Check release tag
3232
id: check-tag
33-
uses: actions/github-script@v7
33+
uses: actions/github-script@v8
3434
with:
3535
script: |
3636
console.log('github.event_name', '${{ github.event_name }}')
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Check tag semver
5353
id: check-tag-semver
54-
uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2025-04-27
54+
uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2026-03-21
5555
if: ${{ steps.check-tag.outputs.RELEASE_TAG != '' }}
5656
with:
5757
version: ${{ steps.check-tag.outputs.RELEASE_TAG }}
@@ -63,7 +63,7 @@ jobs:
6363
if: ${{ needs.check.outputs.RELEASE_TAG != '' }}
6464
steps:
6565
- name: Make a release
66-
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2.2 - latest as of 2025-04-27
66+
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1 - latest as of 2026-03-21
6767
if: github.event.inputs.dryRun != 'true'
6868
with:
6969
tag_name: ${{ needs.check.outputs.RELEASE_TAG }}

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737

3838
- name: Install mise
3939
run: |
@@ -78,15 +78,15 @@ jobs:
7878
steps:
7979
- name: Docker Setup QEMU
8080
if: matrix.platform != 'linux/amd64'
81-
uses: docker/setup-qemu-action@v3.6.0 # v3.6.0 - latest as of 2025-04-27
81+
uses: docker/setup-qemu-action@v4 # v4 - latest as of 2026-03-21
8282
with:
8383
platforms: all
8484

8585
- name: Docker Setup Buildx
86-
uses: docker/setup-buildx-action@v3.10.0 # v3.10.0 - latest as of 2025-04-27
86+
uses: docker/setup-buildx-action@v4 # v4 - latest as of 2026-03-21
8787

8888
- name: Checkout code
89-
uses: actions/checkout@v4 # v4.2.2 - latest as of 2025-04-27
89+
uses: actions/checkout@v6
9090

9191
- name: Create Buildx
9292
run: |
@@ -137,10 +137,10 @@ jobs:
137137

138138
steps:
139139
- name: Docker Setup Buildx
140-
uses: docker/setup-buildx-action@v3.10.0 # v3.10.0 - latest as of 2025-04-27
140+
uses: docker/setup-buildx-action@v4 # v4 - latest as of 2026-03-21
141141

142142
- name: Checkout code
143-
uses: actions/checkout@v4 # v4.2.2 - latest as of 2025-04-27
143+
uses: actions/checkout@v6
144144

145145
- name: Create Buildx
146146
run: |

0 commit comments

Comments
 (0)