Skip to content

Commit 123ddc5

Browse files
committed
updating actions
1 parent a2006a8 commit 123ddc5

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
if: github.event.head_commit.committer.name != 'github-merge-queue[bot]'
5454
steps:
5555
- name: Checkout repository
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757

5858
# Add any setup steps before running the `GitHub/codeql-action/init` action.
5959
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/dev_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
TAG_NAME: "dev" # reuse the same tag each night
2121
RELEASE_TITLE: "Dev Nightly"
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/docker.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535

3636
- name: Write overview
3737
shell: bash
@@ -49,7 +49,7 @@ jobs:
4949
image: ${{ steps.scan.outputs.image }}
5050
steps:
5151
- name: Checkout repository
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v6
5353
- id: scan
5454
name: Build matrix
5555
run: ci/distros_tags.sh
@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Checkout repository
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v6
7676

7777
- name: Free up disk space
7878
uses: ./.github/actions/free-disk-space
@@ -81,18 +81,18 @@ jobs:
8181
show_tree: "true"
8282

8383
- name: Set up Buildx
84-
uses: docker/setup-buildx-action@v3
84+
uses: docker/setup-buildx-action@v4
8585

8686
- name: Log in to GHCR
87-
uses: docker/login-action@v3
87+
uses: docker/login-action@v4
8888
with:
8989
registry: ghcr.io
9090
username: ${{ github.actor }}
9191
password: ${{ secrets.GITHUB_TOKEN }}
9292

9393
- id: meta
9494
name: Docker metadata (base tag)
95-
uses: docker/metadata-action@v5
95+
uses: docker/metadata-action@v6
9696
with:
9797
images: ${{ needs.discover.outputs.image }}
9898
tags: |
@@ -159,7 +159,7 @@ jobs:
159159
echo "LOG_TAR=$LOGROOT/$TAR" >> "$GITHUB_ENV"
160160
161161
- name: Upload logs artifact
162-
uses: actions/upload-artifact@v4
162+
uses: actions/upload-artifact@v7
163163
with:
164164
name: logs-${{ env.LOGNAME }}
165165
path: ${{ env.LOG_TAR }}
@@ -183,21 +183,21 @@ jobs:
183183
TAG4: ${{ format('{0}-{1}-{2}-{3}', matrix.gemc_tag, matrix.geant4_tag, matrix.image, matrix.image_tag) }}
184184
steps:
185185
- name: Checkout repository
186-
uses: actions/checkout@v4
186+
uses: actions/checkout@v6
187187

188188
- name: Log in to GHCR
189-
uses: docker/login-action@v3
189+
uses: docker/login-action@v4
190190
with:
191191
registry: ghcr.io
192192
username: ${{ github.actor }}
193193
password: ${{ secrets.GITHUB_TOKEN }}
194194

195195
- name: Set up Buildx
196-
uses: docker/setup-buildx-action@v3
196+
uses: docker/setup-buildx-action@v4
197197

198198
- id: meta
199199
name: Docker metadata (base tag)
200-
uses: docker/metadata-action@v5
200+
uses: docker/metadata-action@v6
201201
with:
202202
images: ${{ needs.discover.outputs.image }}
203203
tags: |
@@ -242,7 +242,7 @@ jobs:
242242
echo "Wrote $OUT"
243243
244244
- name: Upload summary artifact (manifest)
245-
uses: actions/upload-artifact@v4
245+
uses: actions/upload-artifact@v7
246246
with:
247247
name: summary-${{ env.TAG4 }}-manifest
248248
path: ${{ env.MANIFEST_SUMMARY_FILE }}

.github/workflows/doxygen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
container: jeffersonlab/base:fedora40
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@main
18+
uses: actions/checkout@v6
1919
- name: Run Doxygen
2020
run: |
2121
./ci/doxygen.sh

.github/workflows/sanitize.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix_sanitize: ${{ steps.scan.outputs.matrix_sanitize }}
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- id: scan
2626
name: Build matrix
@@ -54,7 +54,7 @@ jobs:
5454

5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v6
5858

5959
- name: Sanitizer - ${{ matrix.sanitizer }}
6060
shell: bash
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Upload sanitizer logs (artifact)
9191
if: ${{ always() }} # run regardless of earlier step outcomes
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: logs-${{ matrix.baseos }}-${{ matrix.arch }}-${{ matrix.sanitizer }}
9595
path: ${{ github.workspace }}/_artifacts/logs-${{ matrix.baseos }}-${{ matrix.arch }}-${{ matrix.sanitizer }}.tgz

0 commit comments

Comments
 (0)