Skip to content

Commit 9fc48b7

Browse files
authored
bump the version of various github action dependencies (#286)
* bump the version of various github action dependencies * be more specific about svenstaro/upload * be less specific about svenstaro/upload
1 parent 77e2946 commit 9fc48b7

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ jobs:
4242
# Login against a Docker registry
4343
# https://github.com/docker/login-action
4444
- name: Log into registry
45-
uses: docker/login-action@v3.4.0
45+
uses: docker/login-action@v3.6.0
4646
with:
4747
registry: ${{ env.REGISTRY }}
4848
username: ${{ github.actor }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
5050

5151
- name: Setup Docker buildx
52-
uses: docker/setup-buildx-action@v3.10.0
52+
uses: docker/setup-buildx-action@v3.12.0
5353

5454
# Build and push Docker image as "pandoc_test"
5555
# Only amd64, since we're just building a container
5656
# to be used below in the GH action runner.
5757
- name: Build and publish Docker image
58-
uses: docker/build-push-action@v6.16.0
58+
uses: docker/build-push-action@v6.18.0
5959
with:
6060
# Cache layers from the container repo.
6161
# Read-only: Avoid cluttering up the cache on pull requests.

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Login against a Docker registry
3636
# https://github.com/docker/login-action
3737
- name: Log into registry
38-
uses: docker/login-action@v3.4.0
38+
uses: docker/login-action@v3.6.0
3939
with:
4040
registry: ${{ env.REGISTRY }}
4141
username: ${{ github.actor }}
@@ -49,7 +49,7 @@ jobs:
4949
platforms: all
5050

5151
- name: Setup Docker buildx
52-
uses: docker/setup-buildx-action@v3.10.0
52+
uses: docker/setup-buildx-action@v3.12.0
5353

5454
# Extract metadata (tags, labels) for Docker
5555
# https://github.com/docker/metadata-action
@@ -65,7 +65,7 @@ jobs:
6565
# Build and push Docker image with Buildx
6666
# https://github.com/docker/build-push-action
6767
- name: Build and publish Docker image
68-
uses: docker/build-push-action@v6.16.0
68+
uses: docker/build-push-action@v6.18.0
6969
with:
7070
# Cache layers from the container repo.
7171
# Update the cache only on pushes to main.

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Login against a Docker registry
3636
# https://github.com/docker/login-action
3737
- name: Log into registry
38-
uses: docker/login-action@v3.4.0
38+
uses: docker/login-action@v3.6.0
3939
with:
4040
registry: ${{ env.REGISTRY }}
4141
username: ${{ github.actor }}
@@ -49,7 +49,7 @@ jobs:
4949
platforms: all
5050

5151
- name: Setup Docker buildx
52-
uses: docker/setup-buildx-action@v3.10.0
52+
uses: docker/setup-buildx-action@v3.12.0
5353

5454
# Extract metadata (tags, labels) for Docker
5555
# https://github.com/docker/metadata-action
@@ -65,7 +65,7 @@ jobs:
6565
# Build and push Docker image with Buildx
6666
# https://github.com/docker/build-push-action
6767
- name: Build and publish Docker image
68-
uses: docker/build-push-action@v6.16.0
68+
uses: docker/build-push-action@v6.18.0
6969
with:
7070
# Cache layers from the container repo.
7171
# Read-only: Releasing shouldn't be doing anything that wasn't already

.github/workflows/render.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
echo output filename: ${filename}
5454
5555
- name: Checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757
with:
5858
ref: ${{ inputs.revision }}
5959
fetch-depth: 0
@@ -63,7 +63,7 @@ jobs:
6363
# key so that the cache is invalidated upon file change or container
6464
# version change.
6565
- name: Cache LaTeX files
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
env:
6868
cache-name: cache-latex-${{ inputs.input }}-files
6969
with:
@@ -121,14 +121,14 @@ jobs:
121121
file_glob: true
122122
# Always upload all PDF and log files to the workflow artifacts
123123
- name: Upload pdfs
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v6
125125
with:
126126
name: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
127127
path: |
128128
${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}*.pdf
129129
if: always()
130130
- name: Upload logs
131-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@v6
132132
with:
133133
name: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.log
134134
path: |

0 commit comments

Comments
 (0)