Skip to content

Commit 0b2bc20

Browse files
dependabot[bot]joaodinissf
authored andcommitted
chore(deps): bump actions/checkout from 7.0.0 to 7.0.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@9c091bb...3d3c42e) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 70efacf commit 0b2bc20

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
tag: ${{ steps.version.outputs.tag }}
3434
snapshot_sha: ${{ steps.snapshot.outputs.sha }}
3535
steps:
36-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
36+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3737
with:
3838
ref: ${{ inputs.branch }}
3939
fetch-depth: 0
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Check out gh-pages branch
6666
id: checkout-gh-pages
67-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
67+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6868
with:
6969
ref: gh-pages
7070
path: gh-pages
@@ -115,13 +115,13 @@ jobs:
115115
needs: create_tag
116116
runs-on: ubuntu-24.04
117117
steps:
118-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
118+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
119119
with:
120120
ref: ${{ needs.create_tag.outputs.tag }}
121121
fetch-depth: 0
122122

123123
- name: Check out gh-pages branch
124-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
124+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
125125
with:
126126
ref: gh-pages
127127
path: gh-pages

.github/workflows/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
publish:
2222
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
24+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2525
with:
2626
ref: ${{ github.event.inputs.branch || github.ref }}
2727
fetch-depth: 0
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Check out gh-pages branch
8282
id: checkout-gh-pages
83-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
83+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
8484
with:
8585
ref: gh-pages
8686
path: gh-pages

.github/workflows/verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
pmd:
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
8+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
99
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5
1010
with:
1111
distribution: 'temurin'
@@ -17,7 +17,7 @@ jobs:
1717
checkstyle:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
20+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2121
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5
2222
with:
2323
distribution: 'temurin'
@@ -29,13 +29,13 @@ jobs:
2929
line-endings:
3030
runs-on: ubuntu-24.04
3131
steps:
32-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
32+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3333
- name: Check LF line endings
3434
run: bash .github/scripts/check-line-endings.sh
3535
maven-verify:
3636
runs-on: ubuntu-24.04
3737
steps:
38-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
38+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3939
- name: Set up JDK 21
4040
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5
4141
with:

0 commit comments

Comments
 (0)