Skip to content

Commit

Permalink
chore: Bump a lot of GHA deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Jan 29, 2024
1 parent 1ad37a3 commit 6d0e578
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install yaml2json
run: python3 -m pip install remarshal
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Import from architectures.yml
id: import
run: echo "json=$(yaml2json architectures.yml | jq -c .)" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -94,14 +94,14 @@ jobs:
- name: Login to Docker Hub
id: docker-hub-login
if: ${{ env.docker-hub-credentials == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to GitHub Container Registry
id: ghcr-login
if: ${{ env.ghcr-credentials == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
Expand All @@ -127,7 +127,7 @@ jobs:
echo "major-minor-branch-upstream=docker.io/${NSU}/${REPOSITORY}:${MAJOR_MINOR_BRANCH}" >> $GITHUB_OUTPUT
- name: Set up cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: dev-generic
with:
Expand All @@ -136,11 +136,11 @@ jobs:
restore-keys: |
${{ runner.os }}/${{ env.cache-name }}/${{ github.run_id }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Build to local cache
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
target: dev-generic
platforms: linux/amd64,linux/arm64
Expand All @@ -157,7 +157,7 @@ jobs:
cache-to: type=local,dest=${{ steps.paths.outputs.local-new }},mode=max
- name: Push to registry cache
if: ${{ env.docker-hub-credentials == 'true' }}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
target: dev-generic
platforms: linux/amd64,linux/arm64
Expand Down Expand Up @@ -201,14 +201,14 @@ jobs:
- name: Login to Docker Hub
id: docker-hub-login
if: ${{ env.docker-hub-credentials == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to GitHub Container Registry
id: ghcr-login
if: ${{ env.ghcr-credentials == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
echo "${delimiter}" >> $GITHUB_OUTPUT
- name: Set up dev-generic cache
id: dev-generic-cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: dev-generic
with:
Expand Down Expand Up @@ -332,12 +332,12 @@ jobs:
cache-to: type=inline
load: true
- name: Checkout ZMK
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.zmk-repository }}
ref: ${{ env.zmk-ref }}
- name: Cache Zephyr modules
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: zephyr-modules
with:
Expand Down Expand Up @@ -595,7 +595,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Tag
env:
TAG: ${{ needs.tags.outputs.major-minor }}
Expand Down Expand Up @@ -667,7 +667,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.stable-release-trigger.outputs.stable-tag }}
- name: Tag
Expand Down

0 comments on commit 6d0e578

Please sign in to comment.