Skip to content

Commit 9f4155a

Browse files
authored
Update GH actions, terraform version, fix Go version (#1022)
* Updated go version to go toolchain version Signed-off-by: Sebastian Schuster <[email protected]> * Updated most Github Action versions Signed-off-by: Sebastian Schuster <[email protected]> * Updated terraform action version and terraform version Signed-off-by: Sebastian Schuster <[email protected]> --------- Signed-off-by: Sebastian Schuster <[email protected]>
1 parent 1f1a588 commit 9f4155a

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jobs:
3838

3939
steps:
4040
- name: Checkout Code
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
- name: Set up Go
44-
uses: actions/setup-go@v3
44+
uses: actions/setup-go@v5
4545
with:
4646
go-version-file: 'go.mod'
4747
cache: true
4848

4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@v2
51+
uses: github/codeql-action/init@v3
5252
with:
5353
languages: ${{ matrix.language }}
5454
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -59,7 +59,7 @@ jobs:
5959
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6060
# If this step fails, then you should remove it and run the build manually (see below)
6161
- name: Autobuild
62-
uses: github/codeql-action/autobuild@v2
62+
uses: github/codeql-action/autobuild@v3
6363

6464
# ℹ️ Command-line programs to run using the OS shell.
6565
# 📚 https://git.io/JvXDl
@@ -73,4 +73,4 @@ jobs:
7373
# make release
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v2
76+
uses: github/codeql-action/analyze@v3

.github/workflows/dependency-submission.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Set up Go
18-
uses: actions/setup-go@v3
18+
uses: actions/setup-go@v5
1919
with:
2020
go-version-file: 'go.mod'
2121
cache: true
2222

2323
- name: Run snapshot action
24-
uses: actions/go-dependency-submission@v1
24+
uses: actions/go-dependency-submission@v2
2525
with:
2626
go-mod-path: go.mod

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Wait for acceptance tests
1414
id: wait
15-
uses: "WyriHaximus/github-action-wait-for-status@v1.4.0"
15+
uses: "WyriHaximus/github-action-wait-for-status@v1.8.0"
1616
with:
1717
ignoreActions: Wait for acceptance tests
1818
checkInterval: 30
@@ -28,17 +28,17 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout Code
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232

3333
- name: Set up Go
34-
uses: actions/setup-go@v3
34+
uses: actions/setup-go@v5
3535
with:
3636
go-version-file: 'go.mod'
3737
cache: true
3838

3939
- name: Import GPG key
4040
id: import_gpg
41-
uses: crazy-max/ghaction-import-gpg@v2
41+
uses: crazy-max/ghaction-import-gpg@v6
4242
env:
4343
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
4444
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 2 # we want the HEAD commit and the previous commit to compare changed files
1818

1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version-file: 'go.mod'
2323
cache: true
@@ -31,7 +31,7 @@ jobs:
3131
# we only want to run tests if any code changes (not for README or docs changes)
3232
- name: Check Changed Files
3333
id: files
34-
uses: tj-actions/changed-files@v41.0.0
34+
uses: tj-actions/changed-files@v45
3535
with:
3636
files: |
3737
.github
@@ -69,19 +69,19 @@ jobs:
6969
cancel-in-progress: true
7070
steps:
7171
- name: Checkout Code
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v4
7373

7474
- name: Set up Go
75-
uses: actions/setup-go@v3
75+
uses: actions/setup-go@v5
7676
with:
7777
go-version-file: 'go.mod'
7878
cache: true
7979

8080
- name: Setup Terraform
81-
uses: hashicorp/setup-terraform@v1
81+
uses: hashicorp/setup-terraform@v3
8282
with:
8383
terraform_wrapper: false
84-
terraform_version: 1.9.5
84+
terraform_version: 1.9.8
8585

8686
- name: Start Keycloak Container
8787
run: |
@@ -99,7 +99,7 @@ jobs:
9999
run: ./scripts/wait-for-local-keycloak.sh && ./scripts/create-terraform-client.sh
100100

101101
- name: Get Keycloak Version
102-
uses: actions/github-script@v6
102+
uses: actions/github-script@v7
103103
id: keycloak-version
104104
env:
105105
KEYCLOAK_VERSION: ${{ matrix.keycloak-version }}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ require (
5454
google.golang.org/protobuf v1.33.0 // indirect
5555
)
5656

57-
go 1.22
57+
go 1.22.0

0 commit comments

Comments
 (0)