Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@ jobs:
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

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

# Build and push Docker image as "pandoc_test"
# Only amd64, since we're just building a container
# to be used below in the GH action runner.
- name: Build and publish Docker image
uses: docker/build-push-action@v6.16.0
uses: docker/build-push-action@v6.18.0
with:
# Cache layers from the container repo.
# Read-only: Avoid cluttering up the cache on pull requests.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -49,7 +49,7 @@ jobs:
platforms: all

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

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
Expand All @@ -65,7 +65,7 @@ jobs:
# Build and push Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Build and publish Docker image
uses: docker/build-push-action@v6.16.0
uses: docker/build-push-action@v6.18.0
with:
# Cache layers from the container repo.
# Update the cache only on pushes to main.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -49,7 +49,7 @@ jobs:
platforms: all

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

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
Expand All @@ -65,7 +65,7 @@ jobs:
# Build and push Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Build and publish Docker image
uses: docker/build-push-action@v6.16.0
uses: docker/build-push-action@v6.18.0
with:
# Cache layers from the container repo.
# Read-only: Releasing shouldn't be doing anything that wasn't already
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
echo output filename: ${filename}

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.revision }}
fetch-depth: 0
Expand All @@ -63,7 +63,7 @@ jobs:
# key so that the cache is invalidated upon file change or container
# version change.
- name: Cache LaTeX files
uses: actions/cache@v4
uses: actions/cache@v5
env:
cache-name: cache-latex-${{ inputs.input }}-files
with:
Expand Down Expand Up @@ -121,14 +121,14 @@ jobs:
file_glob: true
# Always upload all PDF and log files to the workflow artifacts
- name: Upload pdfs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
path: |
${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}*.pdf
if: always()
- name: Upload logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.log
path: |
Expand Down