File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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 }}
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
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.
Original file line number Diff line number Diff line change 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 }}
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
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
Original file line number Diff line number Diff line change 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
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 : |
You can’t perform that action at this time.
0 commit comments