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

build(deps): bump actions/checkout from 3 to 4 #963

Merged
merged 1 commit into from
Sep 25, 2024
Merged
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
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -26,7 +26,7 @@ jobs:
conformance-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -41,7 +41,7 @@ jobs:
conformance-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -61,7 +61,7 @@ jobs:
conformance-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -80,7 +80,7 @@ jobs:
conformance-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -99,7 +99,7 @@ jobs:
conformance-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -114,7 +114,7 @@ jobs:
conformance-kaitai-struct:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -129,7 +129,7 @@ jobs:
conformance-swift:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -148,7 +148,7 @@ jobs:
conformance-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand All @@ -171,7 +171,7 @@ jobs:
run:
working-directory: cpp
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/cache@v3
Expand All @@ -190,7 +190,7 @@ jobs:
run:
working-directory: cpp
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/cache@v3
Expand All @@ -207,7 +207,7 @@ jobs:
typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
typescript-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- run: corepack enable
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
run:
working-directory: go
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-go@v5
Expand Down Expand Up @@ -425,7 +425,7 @@ jobs:
env: ${{ matrix.env }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
Expand Down Expand Up @@ -469,7 +469,7 @@ jobs:
swift:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: swift-actions/setup-swift@v1
Expand All @@ -486,7 +486,7 @@ jobs:
run:
working-directory: rust
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions-rs/toolchain@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
docs-home:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true

Expand All @@ -37,7 +37,7 @@ jobs:
docs-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: make -C cpp ci-docs

Expand All @@ -52,7 +52,7 @@ jobs:
docs-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
Expand All @@ -73,7 +73,7 @@ jobs:
docs-swift:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: swift-actions/setup-swift@v1
with:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
deployments: write
steps:
# need checkout so that cloudflare can detect git commit
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4

Expand Down
Loading