Skip to content

Commit bbac30d

Browse files
authored
Merge pull request #23055 from galaxyproject/dependabot/github_actions/actions-23adaa3c9a
build(deps): bump the actions group across 1 directory with 7 updates
2 parents 648ec79 + 46e81ba commit bbac30d

9 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/build_client.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: echo "commit=$(git rev-parse HEAD 2>/dev/null)" >> $GITHUB_OUTPUT
3232
working-directory: 'galaxy root'
3333
- name: cache client build
34-
uses: actions/cache@v5.0.5
34+
uses: actions/cache@v6.1.0
3535
id: cache
3636
with:
3737
key: galaxy-static-${{ steps.client-commit.outputs.commit }}

.github/workflows/build_container_image.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
- name: Extract metadata for container image
3737
id: meta
38-
uses: docker/metadata-action@v6
38+
uses: docker/metadata-action@v6.1.0
3939
with:
4040
images: ghcr.io/${{ github.repository }}
4141
tags: |
@@ -47,19 +47,19 @@ jobs:
4747
echo "builddate=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
4848
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v4
50+
uses: docker/setup-buildx-action@v4.1.0
5151
with:
5252
platforms: linux/amd64
5353

5454
- name: Login to GHCR
55-
uses: docker/login-action@v4
55+
uses: docker/login-action@v4.2.0
5656
with:
5757
registry: ghcr.io
5858
username: ${{ github.repository_owner }}
5959
password: ${{ secrets.GITHUB_TOKEN }}
6060

6161
- name: Build and push container image to ghcr
62-
uses: docker/build-push-action@v7
62+
uses: docker/build-push-action@v7.2.0
6363
with:
6464
build-args: |
6565
GIT_COMMIT=${{ steps.buildargs.outputs.gitcommit }}
@@ -83,7 +83,7 @@ jobs:
8383
- uses: actions/checkout@v7.0.0
8484
with:
8585
persist-credentials: false
86-
- uses: actions/setup-python@v6.2.0
86+
- uses: actions/setup-python@v6.3.0
8787
with:
8888
python-version: '3.14'
8989
# https://stackoverflow.com/questions/59810838/how-to-get-the-short-sha-for-the-github-workflow
@@ -112,20 +112,20 @@ jobs:
112112
echo "gitcommit=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
113113
echo "builddate=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
114114
- name: Set up Docker Buildx
115-
uses: docker/setup-buildx-action@v4
115+
uses: docker/setup-buildx-action@v4.1.0
116116
- name: Login to quay.io
117-
uses: docker/login-action@v4
117+
uses: docker/login-action@v4.2.0
118118
with:
119119
registry: quay.io
120120
username: ${{ secrets.QUAY_USERNAME }}
121121
password: ${{ secrets.QUAY_PASSWORD }}
122122
- name: Login to DockerHub
123-
uses: docker/login-action@v4
123+
uses: docker/login-action@v4.2.0
124124
with:
125125
username: ${{ secrets.DOCKERHUB_USERNAME }}
126126
password: ${{ secrets.DOCKERHUB_PASSWORD }}
127127
- name: Build and push galaxy-min image
128-
uses: docker/build-push-action@v7
128+
uses: docker/build-push-action@v7.2.0
129129
with:
130130
context: .
131131
file: .k8s_ci.Dockerfile
@@ -141,7 +141,7 @@ jobs:
141141
run: | # zizmor: ignore[template-injection]
142142
echo "FROM galaxy/galaxy-min:${{ steps.branch.outputs.name }}" > /tmp/Dockerfile.auto
143143
- name: Build and push auto-expiring per-commit image
144-
uses: docker/build-push-action@v7
144+
uses: docker/build-push-action@v7.2.0
145145
with:
146146
file: /tmp/Dockerfile.auto
147147
push: true

.github/workflows/first_startup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
- name: Restore client cache
43-
uses: actions/cache@v5.0.5
43+
uses: actions/cache@v6.1.0
4444
with:
4545
fail-on-cache-miss: true
4646
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/integration_selenium.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: Install Python
6565
run: uv python install
6666
- name: Restore client cache
67-
uses: actions/cache@v5.0.5
67+
uses: actions/cache@v6.1.0
6868
with:
6969
fail-on-cache-miss: true
7070
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/osx_startup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
miniforge-version: latest
4040
activate-environment: ''
4141
- name: Restore client cache
42-
uses: actions/cache@v5.0.5
42+
uses: actions/cache@v6.1.0
4343
with:
4444
fail-on-cache-miss: true
4545
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/playwright.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install Python
6666
run: uv python install
6767
- name: Restore client cache
68-
uses: actions/cache@v5.0.5
68+
uses: actions/cache@v6.1.0
6969
with:
7070
fail-on-cache-miss: true
7171
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/selenium.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: Install Python
6565
run: uv python install
6666
- name: Restore client cache
67-
uses: actions/cache@v5.0.5
67+
uses: actions/cache@v6.1.0
6868
with:
6969
fail-on-cache-miss: true
7070
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/tool_form_harness.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
playwright install chromium --with-deps
8484
working-directory: 'galaxy root'
8585
- name: Restore client cache
86-
uses: actions/cache@v5.0.5
86+
uses: actions/cache@v6.1.0
8787
with:
8888
fail-on-cache-miss: true
8989
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}

.github/workflows/zizmor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
persist-credentials: false
2626

2727
- name: Run zizmor 🌈
28-
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
28+
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7

0 commit comments

Comments
 (0)