Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#1024)
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent b7a08f8 commit e7f6e57
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-man.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
build-man:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Checks that manual generation works
run: make build-man
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build docs
run: make build-docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# release-env: alpine # temp removal of alpine releases for #881

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run checks
run: |
SECRETS_RELEASE_ENV="${{ matrix.release-env }}" \
Expand All @@ -62,7 +62,7 @@ jobs:
- deb
- rpm
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run dry run of the release process
run: |
SECRETS_RELEASE_TYPE="${{ matrix.release-type }}" \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# - deb
# - rpm
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run checks
run: SECRETS_RELEASE_TYPE="${{ matrix.release-type }}" make release
env:
Expand All @@ -33,7 +33,7 @@ jobs:
# runs-on: ubuntu-latest
# needs: ['release-packages']
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - run: make changelog
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Shellcheck and Hadolint
run: make lint

Expand All @@ -37,7 +37,7 @@ jobs:
- rocky
- ubuntu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run checks
run: SECRETS_DOCKER_ENV="${{ matrix.docker-env }}" make docker-ci

Expand All @@ -47,7 +47,7 @@ jobs:
matrix:
test-verbose: [0, 1]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install deps
run: brew install gawk gnupg
- name: Run checks
Expand All @@ -56,7 +56,7 @@ jobs:
freebsd-ci:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run checks
id: test
uses: vmactions/[email protected]
Expand All @@ -76,6 +76,6 @@ jobs:
update: 'true'
additional-packages: gnupg make man git gawk file
- run: git config --global core.autocrlf input
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- shell: wsl-bash {0}
run: make test

0 comments on commit e7f6e57

Please sign in to comment.