Skip to content

Commit 1865354

Browse files
authored
Upgrade GitHub Actions (#23)
1 parent f5ee8bb commit 1865354

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/container-vulnerability-scan.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Set up QEMU
40-
uses: docker/setup-qemu-action@v2
40+
uses: docker/setup-qemu-action@v3
4141
- name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@v2
42+
uses: docker/setup-buildx-action@v3
4343
- name: Login to DockerHub container registry
4444
if: inputs.login_dockerhub
45-
uses: docker/login-action@v2
45+
uses: docker/login-action@v3
4646
with:
4747
username: ${{ secrets.DOCKERHUB_USERNAME }}
4848
password: ${{ secrets.DOCKERHUB_PASSWORD }}
@@ -52,7 +52,7 @@ jobs:
5252
- name: Download container image from artifacts if uploaded
5353
if: inputs.image_artifact_name != '' &&
5454
inputs.image_artifact_filename != ''
55-
uses: actions/download-artifact@v3.0.2
55+
uses: actions/download-artifact@v4
5656
with:
5757
name: ${{ inputs.image_artifact_name }}
5858
path: /tmp

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
uses: actions/checkout@v4
3333
- name: Cache asdf
3434
id: cache
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: /home/runner/.asdf
3838
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
3939
- name: Install
4040
if: steps.cache.outputs.cache-hit != 'true'
41-
uses: asdf-vm/actions/install@v2.2.0
41+
uses: asdf-vm/actions/install@v3
4242
with:
4343
# Normally, this action would just install the versions of the .tool-versions file in the root directory of the repository.
4444
# As we also have .tool-versions files in subdirectories, pre-commit hooks would fail if versions in these files differ from

.github/workflows/release-from-label.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
) &&
2525
!contains(github.event.pull_request.labels.*.name, 'chore')
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
3030
- name: install semver
31-
uses: asdf-vm/actions/install@v2.2.0
31+
uses: asdf-vm/actions/install@v3
3232
with:
3333
tool_versions: |
3434
semver 3.3.0

.github/workflows/release-label-validation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
contains(fromJSON('["opened", "edited", "synchronize", "reopened", "labeled", "unlabeled"]'), github.event.action) &&
2121
!startsWith(github.head_ref, 'renovate/')
2222
steps:
23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.10'
2626
- name: determine labels

0 commit comments

Comments
 (0)