summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJann Fischer <jann@mistrust.net>2024-07-12 10:43:54 -0400
committerGitHub <noreply@github.com>2024-07-12 10:43:54 -0400
commit24f681557c5bc0dbea12793760275efb0836f2f3 (patch)
tree6e5281ea0ff8f27fcbb797527fd45e8cfbfb3d32 /.github
parentd710745ffc26bfa437aa610331ee8060d12223dc (diff)
chore(build): Update GitHub actions used during CI (#774)
Signed-off-by: Jann Fischer <jann@mistrust.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-tests.yaml12
-rw-r--r--.github/workflows/codeql-analysis.yml8
-rw-r--r--.github/workflows/image.yaml6
3 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml
index 6e63d88..23ba8fd 100644
--- a/.github/workflows/ci-tests.yaml
+++ b/.github/workflows/ci-tests.yaml
@@ -16,7 +16,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Golang
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Download all Go modules
@@ -60,14 +60,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Golang
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
env:
GO111MODULE: off
- name: Run golangci-lint
- uses: golangci/golangci-lint-action@v5
+ uses: golangci/golangci-lint-action@v6
with:
version: v1.57.2
args: --timeout 5m
@@ -76,9 +76,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Setup Golang
- uses: actions/setup-go@v3
+ uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run tests
@@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install Kubeconform
run: |
set -xo pipefail
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 464bba6..f8382e3 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -38,11 +38,11 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v1
+ uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
- uses: github/codeql-action/autobuild@v1
+ uses: github/codeql-action/autobuild@v2
# â„šī¸ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
# make release
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v1
+ uses: github/codeql-action/analyze@v2
diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml
index 4758984..033c834 100644
--- a/.github/workflows/image.yaml
+++ b/.github/workflows/image.yaml
@@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
path: argocd-image-updater
- name: Setup qemu
- uses: docker/setup-qemu-action@v1
+ uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v3
- name: Build and possibly push image
run: |
set -ex