Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump actions/checkout from 3 to 4 #870

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading