summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/codeql-analysis.yml2
-rw-r--r--.github/workflows/docker.yml2
-rw-r--r--.github/workflows/image-scan.yml2
-rw-r--r--.github/workflows/lint.yml2
5 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0689b3e7..879b1725 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
git config --global user.email "bogus@example.com"
git config --global user.name "Someone"
git config --global --add safe.directory /__w/gomplate/gomplate
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: make build
@@ -51,7 +51,7 @@ jobs:
- run: |
git config --global user.email "bogus@example.com"
git config --global user.name "Someone"
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: make build
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index ce0e443d..1cda7429 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -36,7 +36,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index a2b63271..225158a3 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -35,7 +35,7 @@ jobs:
- name: Available platforms
run: echo {{ `${{ steps.buildx.outputs.platforms }}` }}
- run: docker info && docker version
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: determine if this is a tag
diff --git a/.github/workflows/image-scan.yml b/.github/workflows/image-scan.yml
index b2049c0c..f122e599 100644
--- a/.github/workflows/image-scan.yml
+++ b/.github/workflows/image-scan.yml
@@ -15,7 +15,7 @@ jobs:
DOCKER_BUILDKIT: 1
DOCKER_CLI_EXPERIMENTAL: enabled
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Quick build (linux/alpine only)
run: |
docker build --target gomplate-alpine -t gomplate .
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index a2294bad..a342c885 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with: