aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2024-09-14 10:24:08 -0700
committerJohn Helmert III <ajak@gentoo.org>2024-09-14 14:07:29 -0700
commit8dafe684d7333153c4f1ef6f7b64674e7d2e4758 (patch)
tree1b15315f219945e4376605917f4ae40057388a42
parentfix: drop `stage3:hardened-nomultilib` manifest (diff)
downloaddocker-images-8dafe684d7333153c4f1ef6f7b64674e7d2e4758.tar.gz
docker-images-8dafe684d7333153c4f1ef6f7b64674e7d2e4758.tar.bz2
docker-images-8dafe684d7333153c4f1ef6f7b64674e7d2e4758.zip
actions: roll forward actions versions
Necessary to get away from old Node: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ Signed-off-by: John Helmert III <ajak@gentoo.org>
-rw-r--r--.github/actions/container_build/action.yml6
-rw-r--r--.github/actions/manifest_build/action.yml2
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/portage.yml2
4 files changed, 7 insertions, 7 deletions
diff --git a/.github/actions/container_build/action.yml b/.github/actions/container_build/action.yml
index 56584ee..88b2853 100644
--- a/.github/actions/container_build/action.yml
+++ b/.github/actions/container_build/action.yml
@@ -11,9 +11,9 @@ runs:
using: composite
steps:
- name: Set up QEMU
- uses: docker/setup-qemu-action@v2
+ uses: docker/setup-qemu-action@v3
- name: Set up buildx
- uses: docker/setup-buildx-action@v2
+ uses: docker/setup-buildx-action@v3
- name: Set up TARGET
run: echo "TARGET=${{ inputs.target }}" | tee $GITHUB_ENV
shell: bash
@@ -33,7 +33,7 @@ runs:
shell: bash
run: docker run --rm "${ORG}/${TARGET/-/:}" emerge --info
- name: Login to DockerHub
- uses: docker/login-action@v2
+ uses: docker/login-action@v3
if: |
github.ref_name == 'master' && github.repository_owner == 'gentoo' &&
(github.event_name == 'schedule' || github.event_name == 'push')
diff --git a/.github/actions/manifest_build/action.yml b/.github/actions/manifest_build/action.yml
index e1b7829..d045ccd 100644
--- a/.github/actions/manifest_build/action.yml
+++ b/.github/actions/manifest_build/action.yml
@@ -14,7 +14,7 @@ runs:
run: echo "TARGET=${{ inputs.target }}" | tee $GITHUB_ENV
shell: bash
- name: Login to DockerHub
- uses: docker/login-action@v2
+ uses: docker/login-action@v3
with:
username: ${{ inputs.dockerhub_username }}
password: ${{ inputs.dockerhub_password }}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b185caf..7491b9f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Build ${{ matrix.target }}
uses: ./.github/actions/container_build
with:
@@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Build ${{ matrix.target }}
uses: ./.github/actions/manifest_build
with:
diff --git a/.github/workflows/portage.yml b/.github/workflows/portage.yml
index a305bb8..79d69c3 100644
--- a/.github/workflows/portage.yml
+++ b/.github/workflows/portage.yml
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Build ${{ matrix.target }}
uses: ./.github/actions/container_build
with: