Skip to content

Commit 26a1417

Browse files
Bump the github-actions group with 2 updates (#217)
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 198ccdb commit 26a1417

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
runs-on: ${{ matrix.os }}
3939

4040
steps:
41-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
41+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242
if: ${{ !contains(github.event_name, 'workflow_dispatch') }}
4343
with:
4444
fetch-depth: 0
4545

4646
- name: Check out code for workflow_dispatch
4747
if: ${{ contains(github.event_name, 'workflow_dispatch') }}
48-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
48+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4949
with:
5050
fetch-depth: 0
5151
ref: ${{ github.event.inputs.tag }}
@@ -100,7 +100,7 @@ jobs:
100100
runs-on: ubuntu-latest
101101
steps:
102102
- name: Download ubuntu cloudprober binaries
103-
uses: actions/download-artifact@v4
103+
uses: actions/download-artifact@v5
104104
with:
105105
pattern: pacparser-dist-*
106106

@@ -136,14 +136,14 @@ jobs:
136136
runs-on: ${{ matrix.os }}
137137

138138
steps:
139-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
139+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
140140
if: ${{ !contains(github.event_name, 'workflow_dispatch') }}
141141
with:
142142
fetch-depth: 0
143143

144144
- name: Check out code for workflow_dispatch
145145
if: ${{ contains(github.event_name, 'workflow_dispatch') }}
146-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
146+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
147147
with:
148148
fetch-depth: 0
149149
ref: ${{ github.event.inputs.tag }}
@@ -205,14 +205,14 @@ jobs:
205205
runs-on: ubuntu-latest
206206

207207
steps:
208-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
208+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
209209
if: ${{ !contains(github.event_name, 'workflow_dispatch') }}
210210
with:
211211
fetch-depth: 0
212212

213213
- name: Check out code for workflow_dispatch
214214
if: ${{ contains(github.event_name, 'workflow_dispatch') }}
215-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
215+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
216216
with:
217217
fetch-depth: 0
218218
ref: ${{ github.event.inputs.tag }}
@@ -274,13 +274,13 @@ jobs:
274274
steps:
275275
- name: Check out code into the Go module directory
276276
if: ${{ !contains(github.event_name, 'workflow_dispatch') }}
277-
uses: actions/checkout@v4
277+
uses: actions/checkout@v5
278278
with:
279279
fetch-depth: 0
280280

281281
- name: Check out code into the Go module directory
282282
if: ${{ contains(github.event_name, 'workflow_dispatch') }}
283-
uses: actions/checkout@v4
283+
uses: actions/checkout@v5
284284
with:
285285
fetch-depth: 0
286286
ref: ${{ github.event.inputs.tag }}

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository == 'manugarg/pacparser' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository)
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
15+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616
with:
1717
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1818
- name: Install sonar-scanner and build-wrapper

0 commit comments

Comments
 (0)