diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-09-09 21:20:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-09 21:20:05 -0400 |
| commit | 1f0abb3e591260388aee32672e2ca0a21fbdcccc (patch) | |
| tree | a16a2bb76e83e22d6835aa69eb80562a89258ad2 /.github | |
| parent | adc55196fd8bfb6f5aab5f985224fa1d89de1846 (diff) | |
Build(deps): Bump actions/checkout from 3 to 4 (#1834)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/docker.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/image-scan.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/lint.yml | 2 |
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: |
