Skip to content

Commit 0bb0bc0

Browse files
authored
Merge branch 'devel' into devel
2 parents 4a2ff6d + 0e8bf07 commit 0bb0bc0

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/biocbook.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: 🧾 Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v6
2020

2121
- name: ⏳ Collect Workflow Telemetry
22-
uses: runforesight/workflow-telemetry-action@v1
22+
uses: runforesight/workflow-telemetry-action@v2
2323

2424
- name: 🧹 Clean up Docker environment
2525
run: |
@@ -34,13 +34,13 @@ jobs:
3434
sudo rm -rf /var/lib/apt/lists/*
3535
3636
- name: 🐳 Set up QEMU
37-
uses: docker/setup-qemu-action@v2
37+
uses: docker/setup-qemu-action@v4
3838

3939
- name: 🐳 Set up Docker Buildx
40-
uses: docker/setup-buildx-action@v2
40+
uses: docker/setup-buildx-action@v4
4141

4242
- name: 📦 Cache Docker layers
43-
uses: actions/cache@v3
43+
uses: actions/cache@v5
4444
with:
4545
path: /tmp/.buildx-cache
4646
key: ${{ runner.os }}-buildx-${{ github.sha }}
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: 🏷 Get metadata for Docker
7171
id: meta
72-
uses: docker/metadata-action@v4
72+
uses: docker/metadata-action@v6
7373
with:
7474
images: ghcr.io/${{ env.owner }}/${{ env.pkgname }}
7575
tags: |
@@ -78,7 +78,7 @@ jobs:
7878
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'devel') }}
7979
8080
- name: 🐳 Build and push Docker image
81-
uses: docker/build-push-action@v4
81+
uses: docker/build-push-action@v7
8282
with:
8383
context: .
8484
push: true
@@ -98,7 +98,6 @@ jobs:
9898
echo bundle_path=out/${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz >> "${GITHUB_ENV}"
9999
echo book_path=out/book >> "${GITHUB_ENV}"
100100
101-
102101
- name: 🏷 Get gh-branch directory to deploy to
103102
run: |
104103
echo target_folder=$(echo ${{ github.ref_name }} | sed 's,RELEASE_,,' | tr '_' '.') >> "${GITHUB_ENV}"
@@ -112,13 +111,13 @@ jobs:
112111
clean: false
113112

114113
- name: 💾 Upload package bundle artifact
115-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v7
116115
with:
117116
name: bundle
118117
path: ${{ env.bundle_path }}
119118

120119
- name: 💾 Upload book artifact
121-
uses: actions/upload-artifact@v4
120+
uses: actions/upload-artifact@v7
122121
with:
123122
name: book
124123
path: ${{ env.book_path }}

0 commit comments

Comments
 (0)