Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#328)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 9, 2023
1 parent bf5799c commit 83abded
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.platform }}

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

- name: Setup Node
uses: actions/setup-node@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v3
Expand All @@ -29,7 +29,7 @@ jobs:
name: Backend Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust Stable
uses: actions-rs/toolchain@v1
Expand All @@ -52,7 +52,7 @@ jobs:
name: Backend Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
outputs:
new_tag: ${{ steps.version_bump.outputs.new_tag }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# TODO - still have to use PAT to bypass branch protections
# https://github.com/orgs/community/discussions/13836
with:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
outputs:
release_id: ${{ steps.get_release_id.outputs.release_id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "main"

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
# NOTE - there is technically a race condition here if multiple releases go out
# but the build needs to have the up to date version files
# In the past this was handled by a two-stage release, but now it's all in one workflow
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "main"

Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
needs: [create-release, build-app]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "main"

Expand All @@ -186,7 +186,7 @@ jobs:
needs: [create-release, build-app, verify-release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "main"
# TODO - still have to use PAT to bypass branch protections
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Setup Node
uses: actions/setup-node@v3
Expand Down

0 comments on commit 83abded

Please sign in to comment.