Skip to content

Commit afe705f

Browse files
build(deps): bump the actions group with 4 updates (#102)
Bumps the actions group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8f4df93 commit afe705f

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: "3.x"
1717
- name: lint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
release:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: sign
2222
uses: ./

.github/workflows/selftest.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
2424
steps:
25-
- uses: actions/checkout@v3
26-
- uses: actions/setup-python@v4
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-python@v5
2727
if: ${{ matrix.os != 'ubuntu-latest' }}
2828
with:
2929
python-version: "3.x"
@@ -49,7 +49,7 @@ jobs:
4949
- "/tmp/extremely-nonexistent-file"
5050
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
- name: Sign artifact and publish signature
5454
continue-on-error: true
5555
uses: ./
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
- name: Sign artifact and publish signature
7575
uses: ./
7676
id: sigstore-python
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ubuntu-latest
8787
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v4
9090
- name: Sign artifacts and publish signatures
9191
uses: ./
9292
id: sigstore-python
@@ -106,7 +106,7 @@ jobs:
106106
TEST_DIR: test
107107
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
108108
steps:
109-
- uses: actions/checkout@v3
109+
- uses: actions/checkout@v4
110110
- name: Sign artifacts and publish signatures
111111
continue-on-error: true
112112
uses: ./
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
132132
steps:
133-
- uses: actions/checkout@v3
133+
- uses: actions/checkout@v4
134134
- name: Sign artifacts and publish signatures
135135
uses: ./
136136
id: sigstore-python
@@ -153,7 +153,7 @@ jobs:
153153
runs-on: ubuntu-latest
154154
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
155155
steps:
156-
- uses: actions/checkout@v3
156+
- uses: actions/checkout@v4
157157
- name: Sign artifact and publish signature
158158
uses: ./
159159
id: sigstore-python
@@ -162,7 +162,7 @@ jobs:
162162
staging: true
163163
upload-signing-artifacts: true
164164
internal-be-careful-debug: true
165-
- uses: actions/download-artifact@v3
165+
- uses: actions/download-artifact@v4
166166
with:
167167
name: "signing-artifacts-${{ github.job }}"
168168
path: ./test/uploaded
@@ -176,7 +176,7 @@ jobs:
176176
runs-on: ubuntu-latest
177177
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
178178
steps:
179-
- uses: actions/checkout@v3
179+
- uses: actions/checkout@v4
180180
- name: Sign artifact and publish signature
181181
uses: ./
182182
id: sigstore-python
@@ -197,7 +197,7 @@ jobs:
197197
runs-on: ubuntu-latest
198198
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
199199
steps:
200-
- uses: actions/checkout@v3
200+
- uses: actions/checkout@v4
201201
- name: Sign artifact and publish signature
202202
uses: ./
203203
id: sigstore-python
@@ -233,7 +233,7 @@ jobs:
233233

234234
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
235235
steps:
236-
- uses: actions/checkout@v3
236+
- uses: actions/checkout@v4
237237
- name: Sign artifact and publish signature
238238
continue-on-error: true
239239
uses: ./
@@ -259,7 +259,7 @@ jobs:
259259
runs-on: ubuntu-latest
260260
if: (github.event_name != 'pull_request') || !github.event.pull_request.head.repo.fork
261261
steps:
262-
- uses: actions/checkout@v3
262+
- uses: actions/checkout@v4
263263
- name: Get OIDC token
264264
id: get-oidc-token
265265
run: |

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
container:
1919
image: returntocorp/semgrep
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- run: semgrep ci

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ runs:
132132
GHA_SIGSTORE_PYTHON_INPUTS: "${{ inputs.inputs }}"
133133
shell: bash
134134

135-
- uses: actions/upload-artifact@v3
135+
- uses: actions/upload-artifact@v4
136136
if: inputs.upload-signing-artifacts == 'true'
137137
with:
138138
name: "signing-artifacts-${{ github.job }}"

0 commit comments

Comments
 (0)