Skip to content

Commit dcd6356

Browse files
chore github-actions(deps): bump the github-actions group across 1 directory with 10 updates (#51)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1ab5f82 commit dcd6356

9 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v2
15+
uses: dependabot/fetch-metadata@v3
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Clone the code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Setup Go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@v6
1818
with:
1919
go-version-file: go.mod
2020

2121
- name: Run linter
22-
uses: golangci/golangci-lint-action@v8
22+
uses: golangci/golangci-lint-action@v9

.github/workflows/manage-release-tags.yml

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

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

.github/workflows/nightly-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

@@ -32,13 +32,13 @@ jobs:
3232
df -h
3333
3434
- name: Set up QEMU
35-
uses: docker/setup-qemu-action@v3
35+
uses: docker/setup-qemu-action@v4
3636

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

4040
- name: Log in to GitHub Container Registry
41-
uses: docker/login-action@v3
41+
uses: docker/login-action@v4
4242
with:
4343
registry: ${{ env.REGISTRY }}
4444
username: ${{ github.repository_owner }}
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Build and push image
5757
id: build
58-
uses: docker/build-push-action@v6
58+
uses: docker/build-push-action@v7
5959
with:
6060
context: .
6161
target: prod
@@ -67,7 +67,7 @@ jobs:
6767
org.opencontainers.image.created=${{ steps.meta.outputs.build_timestamp }}
6868
6969
- name: Set up Go
70-
uses: actions/setup-go@v5
70+
uses: actions/setup-go@v6
7171
with:
7272
go-version-file: 'go.mod'
7373

@@ -79,7 +79,7 @@ jobs:
7979
USE_IMAGE_DIGESTS=true
8080
8181
- name: Build and push bundle image
82-
uses: docker/build-push-action@v6
82+
uses: docker/build-push-action@v7
8383
with:
8484
context: .
8585
file: bundle.Dockerfile

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
# Use tag from workflow_dispatch input, otherwise use the git ref from tag push
@@ -45,13 +45,13 @@ jobs:
4545
df -h
4646
4747
- name: Set up QEMU
48-
uses: docker/setup-qemu-action@v3
48+
uses: docker/setup-qemu-action@v4
4949

5050
- name: Set up Docker Buildx
51-
uses: docker/setup-buildx-action@v3
51+
uses: docker/setup-buildx-action@v4
5252

5353
- name: Log in to GitHub Container Registry
54-
uses: docker/login-action@v3
54+
uses: docker/login-action@v4
5555
with:
5656
registry: ${{ env.REGISTRY }}
5757
username: ${{ github.repository_owner }}
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build and push image (latest version)
9090
id: build_latest
9191
if: steps.version.outputs.is_latest == 'true'
92-
uses: docker/build-push-action@v6
92+
uses: docker/build-push-action@v7
9393
with:
9494
context: .
9595
target: prod
@@ -104,7 +104,7 @@ jobs:
104104
- name: Build and push image (none latest version)
105105
id: build_non_latest
106106
if: steps.version.outputs.is_latest == 'false'
107-
uses: docker/build-push-action@v6
107+
uses: docker/build-push-action@v7
108108
with:
109109
context: .
110110
target: prod
@@ -116,7 +116,7 @@ jobs:
116116
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.major }}
117117
118118
- name: Set up Go
119-
uses: actions/setup-go@v5
119+
uses: actions/setup-go@v6
120120
with:
121121
go-version-file: 'go.mod'
122122

@@ -154,7 +154,7 @@ jobs:
154154
155155
- name: Build and push bundle image (latest version)
156156
if: steps.version.outputs.is_latest == 'true'
157-
uses: docker/build-push-action@v6
157+
uses: docker/build-push-action@v7
158158
with:
159159
context: .
160160
file: bundle.Dockerfile
@@ -168,7 +168,7 @@ jobs:
168168
169169
- name: Build and push bundle image (non-latest version)
170170
if: steps.version.outputs.is_latest == 'false'
171-
uses: docker/build-push-action@v6
171+
uses: docker/build-push-action@v7
172172
with:
173173
context: .
174174
file: bundle.Dockerfile

.github/workflows/test-e2e-bundle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Clone the code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Setup Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version-file: go.mod
2424

@@ -32,7 +32,7 @@ jobs:
3232
run: kind version
3333

3434
- name: Install helm
35-
uses: azure/setup-helm@v4.3.0
35+
uses: azure/setup-helm@v5.0.0
3636

3737
# func CLI is needed in some e2e tests ATM
3838
- name: Install func cli

.github/workflows/test-e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
deployer: [knative, raw, keda]
2121
steps:
2222
- name: Clone the code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Setup Go
26-
uses: actions/setup-go@v5
26+
uses: actions/setup-go@v6
2727
with:
2828
go-version-file: go.mod
2929

@@ -37,7 +37,7 @@ jobs:
3737
run: kind version
3838

3939
- name: Install helm
40-
uses: azure/setup-helm@v4.3.0
40+
uses: azure/setup-helm@v5.0.0
4141

4242
# func CLI is needed in some e2e tests ATM
4343
- name: Install func cli
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Upload Kubernetes artifacts
7070
if: failure()
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v7
7272
with:
7373
name: func-operator-logs-${{ matrix.builder }}-${{ matrix.deployer }}
7474
path: /tmp/k8s-artifacts/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Clone the code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Setup Go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@v6
1818
with:
1919
go-version-file: go.mod
2020

.github/workflows/verify-codegen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Clone the code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version-file: go.mod
2121

0 commit comments

Comments
 (0)