Skip to content

Commit

Permalink
chore(deps): Bump actions/checkout from 3 to 4
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]>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent e6ae843 commit 9713150
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
go-version: 1.18
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -78,7 +78,7 @@ jobs:
with:
go-version: 1.18
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache Go modules
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
with:
go-version: 1.18
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache Go modules
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
with:
go-version: 1.18
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache Go modules
uses: actions/cache@v3
with:
Expand All @@ -214,7 +214,7 @@ jobs:
permissions: {}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: ./.github/actions/setup-node
- name: Lint documentation
Expand All @@ -226,7 +226,7 @@ jobs:
permissions: {}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: ./.github/actions/setup-node
- name: Run Typescript compiler
Expand All @@ -241,7 +241,7 @@ jobs:
- 'tsc-check-docs'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: ./.github/actions/setup-node
- name: Build static website
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
username: ${{ steps.scrt-dockerhub-username.outputs.secret }}
password: ${{ steps.scrt-dockerhub-token.outputs.secret }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache Go modules
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
password: ${{ secrets.SCRT_PASSWORD }}
key: NFPM_LINUX_PACKAGES_PASSPHRASE
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install tools
run: sudo apt update && sudo apt install -y git gnupg apt-utils dpkg-dev
- name: Download release artifacts
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
password: ${{ secrets.SCRT_PASSWORD }}
key: NFPM_LINUX_PACKAGES_PASSPHRASE
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install tools
run: sudo apt update && sudo apt install -y git gnupg createrepo
- name: Download release artifacts
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
password: ${{ secrets.SCRT_PASSWORD }}
key: DOCKERHUB_TOKEN
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Push description to Docker Hub
uses: peter-evans/dockerhub-description@v3
with:
Expand All @@ -208,14 +208,14 @@ jobs:
- release
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: ./.github/actions/setup
- name: Build static website
working-directory: docs
run: npm run build
- name: Checkout gh-pages branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 'gh-pages'
path: 'gh-pages'
Expand Down

0 comments on commit 9713150

Please sign in to comment.