Skip to content

Commit 7b833f9

Browse files
Bump GitHub actions (#61)
1 parent 8d8dd62 commit 7b833f9

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: go vet ./...
2929

3030
- name: Lint
31-
uses: golangci/golangci-lint-action@v7
31+
uses: golangci/golangci-lint-action@v9
3232

3333
unit:
3434
needs: lint
@@ -56,13 +56,13 @@ jobs:
5656

5757
- name: Upload coverage
5858
if: matrix.os == 'ubuntu-latest'
59-
uses: codecov/codecov-action@v5
59+
uses: codecov/codecov-action@v6
6060
with:
6161
token: ${{ secrets.CODECOV_TOKEN }}
6262

6363
- name: Upload junit report
6464
if: always()
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v7
6666
with:
6767
name: junit-${{ matrix.os }}
6868
path: junit.xml
@@ -135,7 +135,7 @@ jobs:
135135
EMBER_TEST_CADDY_ADDR: http://localhost:2099
136136

137137
- name: Upload integration coverage
138-
uses: codecov/codecov-action@v5
138+
uses: codecov/codecov-action@v6
139139
with:
140140
token: ${{ secrets.CODECOV_TOKEN }}
141141
files: integration-coverage.txt
@@ -160,7 +160,7 @@ jobs:
160160

161161
- name: Upload fuzz crash artifacts
162162
if: failure()
163-
uses: actions/upload-artifact@v4
163+
uses: actions/upload-artifact@v7
164164
with:
165165
name: fuzz-crashes
166166
path: |

.github/workflows/docker.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Docker meta
2222
id: meta
23-
uses: docker/metadata-action@v5
23+
uses: docker/metadata-action@v6
2424
with:
2525
images: |
2626
ghcr.io/${{ github.repository }}
@@ -34,27 +34,27 @@ jobs:
3434
type=raw,value=latest,enable=${{ !contains(github.ref, '-') }}
3535
3636
- name: Set up QEMU
37-
uses: docker/setup-qemu-action@v3
37+
uses: docker/setup-qemu-action@v4
3838

3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@v3
40+
uses: docker/setup-buildx-action@v4
4141

4242
- name: Log in to GHCR
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@v4
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.actor }}
4747
password: ${{ secrets.GITHUB_TOKEN }}
4848

4949
- name: Log in to Docker Hub
50-
uses: docker/login-action@v3
50+
uses: docker/login-action@v4
5151
with:
5252
username: ${{ secrets.DOCKERHUB_USERNAME }}
5353
password: ${{ secrets.DOCKERHUB_TOKEN }}
5454

5555
- name: Build and push
5656
id: build
57-
uses: docker/build-push-action@v6
57+
uses: docker/build-push-action@v7
5858
with:
5959
context: .
6060
platforms: linux/amd64,linux/arm64
@@ -69,14 +69,14 @@ jobs:
6969
sbom: true
7070

7171
- name: Attest GHCR image
72-
uses: actions/attest-build-provenance@v2
72+
uses: actions/attest-build-provenance@v4
7373
with:
7474
subject-name: ghcr.io/${{ github.repository }}
7575
subject-digest: ${{ steps.build.outputs.digest }}
7676
push-to-registry: true
7777

7878
- name: Attest Docker Hub image
79-
uses: actions/attest-build-provenance@v2
79+
uses: actions/attest-build-provenance@v4
8080
with:
8181
subject-name: docker.io/alexandredaubois/ember
8282
subject-digest: ${{ steps.build.outputs.digest }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
go-version-file: go.mod
2222

23-
- uses: goreleaser/goreleaser-action@v6
23+
- uses: goreleaser/goreleaser-action@v7
2424
with:
2525
version: "~> v2"
2626
args: release --clean

0 commit comments

Comments
 (0)