Skip to content

Commit 9a5a25c

Browse files
committed
Up versions of external GitHub actions
1 parent f55036b commit 9a5a25c

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

53-
- uses: actions/setup-java@v4
53+
- uses: actions/setup-java@v5
5454
with:
5555
distribution: 'temurin' # See 'Supported distributions' for available options
5656
java-version: '17'

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
runs-on: ubuntu-latest
3131

3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434

35-
- uses: actions/setup-java@v3
35+
- uses: actions/setup-java@v4
3636
with:
3737
distribution: temurin
3838
java-version: 17
@@ -70,19 +70,19 @@ jobs:
7070
packages: write
7171

7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v5
7474

7575
# Setup docker build environment
7676
- name: Set up QEMU
77-
uses: docker/setup-qemu-action@v2
77+
uses: docker/setup-qemu-action@v3
7878

7979
- name: Set up Docker Buildx
8080
id: buildx
81-
uses: docker/setup-buildx-action@v2
81+
uses: docker/setup-buildx-action@v3
8282

8383
- name: Cache layers
8484
id: cache-buildx
85-
uses: actions/cache@v3
85+
uses: actions/cache@v4
8686
with:
8787
path: /tmp/.buildx-cache
8888
key: ${{ runner.os }}-buildx-s3-${{ hashFiles(matrix.image.build_file, '**/*.gradle', 'gradle.properties', '.dockerignore', '*/src/main/**', 'docker/**') }}
@@ -102,7 +102,7 @@ jobs:
102102
fi
103103
104104
- name: Login to Container Registry
105-
uses: docker/login-action@v2
105+
uses: docker/login-action@v3
106106
with:
107107
registry: ${{ env.REGISTRY }}
108108
username: ${{ github.actor }}
@@ -115,12 +115,12 @@ jobs:
115115
# Add Docker labels and tags
116116
- name: Docker meta
117117
id: docker_meta
118-
uses: docker/metadata-action@v4
118+
uses: docker/metadata-action@v5
119119
with:
120120
images: ${{ env.DOCKER_IMAGE }}
121121

122122
- name: Build docker and optionally push
123-
uses: docker/build-push-action@v3
123+
uses: docker/build-push-action@v6
124124
with:
125125
context: .
126126
file: ${{ matrix.image.build_file }}
@@ -133,7 +133,7 @@ jobs:
133133
${{ steps.docker_meta.outputs.labels }}
134134
135135
- name: Build docker using cache and load
136-
uses: docker/build-push-action@v3
136+
uses: docker/build-push-action@v6
137137
with:
138138
context: .
139139
file: ${{ matrix.image.build_file }}

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@ jobs:
6767
packages: write
6868

6969
steps:
70-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v5
7171

7272
# Setup docker build environment
7373
- name: Set up QEMU
74-
uses: docker/setup-qemu-action@v2
74+
uses: docker/setup-qemu-action@v3
7575

7676
- name: Set up Docker Buildx
7777
id: buildx
78-
uses: docker/setup-buildx-action@v2
78+
uses: docker/setup-buildx-action@v3
7979

8080
- name: Login to Container Registry
81-
uses: docker/login-action@v2
81+
uses: docker/login-action@v3
8282
with:
8383
registry: ${{ env.REGISTRY }}
8484
username: ${{ github.actor }}
@@ -91,14 +91,14 @@ jobs:
9191
# Add Docker labels and tags
9292
- name: Docker meta
9393
id: docker_meta
94-
uses: docker/metadata-action@v4
94+
uses: docker/metadata-action@v5
9595
with:
9696
images: ${{ env.DOCKER_IMAGE }}
9797
tags: |
9898
type=match,pattern=v(.*),group=1
9999
100100
- name: Build docker and push
101-
uses: docker/build-push-action@v3
101+
uses: docker/build-push-action@v6
102102
with:
103103
context: .
104104
file: ${{ matrix.image.build_file }}

.github/workflows/scheduled-snyk-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
packages: write
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v5
4848

4949
- name: Lowercase image name
5050
run: |

.github/workflows/scheduled-snyk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
module: ${{ fromJson(needs.prepare-matrix.outputs.modules ) }}
4343

4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v5
4646

4747
- name: Run Snyk to check for vulnerabilities
4848
uses: snyk/actions/gradle-8-jdk17@master

.github/workflows/snyk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
security:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515

1616
- name: Run Snyk to check for vulnerabilities
1717
uses: snyk/actions/gradle-8-jdk17@master

0 commit comments

Comments
 (0)