Skip to content

Commit c3d6503

Browse files
chore(deps): bump actions/checkout from 3 to 5 in /.github/workflows
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1413b88 commit c3d6503

21 files changed

+25
-25
lines changed

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# to add more allowlisted approvers just modify this env variable
1717
maintainers: seebees, texastony, ShubhamChaturvedi7, lucasmcdonald3, josecorella, imabhichow, rishav-karanjit, antonf-amzn, kessplas, RitvikKapila, ajewellamz
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/check_dafny_runtime_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-22.04
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Validate DafnyRuntimePython Version Consistency
2020
run: |
2121
# Extract the version from pyproject.toml

.github/workflows/check_only_keyword.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
issues: write
1414
pull-requests: write
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/ci_static-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
not-grep:
1212
runs-on: ubuntu-22.04
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: not-grep
1616
uses: mattsb42-meta/[email protected]

.github/workflows/dafny_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
verifyVersion: ${{ steps.read_property.outputs.dafnyVerifyVersion }}
2626
rustVersion: ${{ steps.read_property.outputs.dafnyRustVersion }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Read version from Properties-file
3030
id: read_property
3131
uses: christian-draeger/[email protected]

.github/workflows/duvet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
DOTNET_CLI_TELEMETRY_OPTOUT: 1
2121
DOTNET_NOLOGO: 1
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
submodules: true
2626

.github/workflows/go-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
role-session-name: GoReleaseTest
4040

4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/library_codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
git config --global core.longpaths true
4545
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
# The specification submodule is private so we don't have access, but we don't need
4848
# it to verify the Dafny code. Instead we manually pull the submodules we DO need.
4949
- run: git submodule update --init libraries

.github/workflows/library_dafny_verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
git config --global core.longpaths true
4343
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
# The specification submodule is private so we don't have access, but we don't need
4646
# it to verify the Dafny code. Instead we manually pull the submodules we DO need.
4747
- run: git submodule update --init libraries

.github/workflows/library_format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
git config --global core.longpaths true
4444
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
# The specification submodule is private so we don't have access, but we don't need
4747
# it to verify the Dafny code. Instead we manually pull the submodule we DO need.
4848
- run: git submodule update --init libraries
@@ -90,7 +90,7 @@ jobs:
9090
- name: Support longpaths
9191
run: |
9292
git config --global core.longpaths true
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
- name: Check format of Java, yaml, and md
9595
shell: bash
9696
run: |

0 commit comments

Comments
 (0)