Skip to content

Commit 6c5e041

Browse files
committed
actions update
1 parent 661c753 commit 6c5e041

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
# We must fetch at least the immediate parents so that if this is
3434
# a pull request then we can checkout the head.

.github/workflows/docker-ghcrio.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- prepare
6363
steps:
6464
- name: Check out code
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
with:
6767
fetch-tags: true
6868

@@ -71,10 +71,10 @@ jobs:
7171
uses: docker/metadata-action@v5
7272
with:
7373
images: ghcr.io/${{ github.repository }}
74-
74+
7575
- name: Set up Docker Buildx
7676
uses: docker/setup-buildx-action@v3
77-
77+
7878
- name: Build
7979
uses: docker/build-push-action@v6
8080
with:
@@ -111,14 +111,14 @@ jobs:
111111
112112
- name: Check out code
113113
if: github.event_name == 'workflow_dispatch'
114-
uses: actions/checkout@v5
114+
uses: actions/checkout@v6
115115
with:
116116
ref: ${{ inputs.ref }}
117117
fetch-tags: true
118118

119119
- name: Check out code
120120
if: github.event_name != 'workflow_dispatch'
121-
uses: actions/checkout@v5
121+
uses: actions/checkout@v6
122122
with:
123123
fetch-tags: true
124124

@@ -127,17 +127,17 @@ jobs:
127127
uses: docker/metadata-action@v5
128128
with:
129129
images: ghcr.io/${{ github.repository }}
130-
130+
131131
- name: Set up QEMU
132132
uses: docker/setup-qemu-action@v3
133133
if: ${{ matrix.platform.qemu }}
134134
with:
135135
platforms: ${{ matrix.platform.qemu }}
136136
cache-image: false
137-
137+
138138
- name: Set up Docker Buildx
139139
uses: docker/setup-buildx-action@v3
140-
140+
141141
- name: Login to GitHub Container Registry
142142
if: needs.prepare.outputs.publish_image
143143
uses: docker/login-action@v3
@@ -230,5 +230,3 @@ jobs:
230230
231231
- name: Inspect image
232232
run: docker buildx imagetools inspect ghcr.io/${{ needs.prepare.outputs.github_repository }}:${{ steps.meta.outputs.version }}
233-
234-

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
matrix: ${{ steps.build.outputs.matrix }}
1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v5
20+
uses: actions/setup-go@v6
2121
with:
2222
go-version: ^1
2323

24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
name: Checkout
2626

2727
- name: Test

0 commit comments

Comments
 (0)