ci: bump action versions
This commit is contained in:
parent
99ad91c58a
commit
ed4127abca
3 changed files with 8 additions and 8 deletions
6
.github/workflows/autotag.yaml
vendored
6
.github/workflows/autotag.yaml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: "Extract tagbase"
|
- name: "Extract tagbase"
|
||||||
id: extract_tagbase
|
id: extract_tagbase
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v9
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const ref = context.ref;
|
const ref = context.ref;
|
||||||
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
core.setOutput('tagbase', tagbase);
|
core.setOutput('tagbase', tagbase);
|
||||||
|
|
||||||
- name: "Tagging core/*"
|
- name: "Tagging core/*"
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v9
|
||||||
env:
|
env:
|
||||||
INPUT_TAGPREFIX: "core/"
|
INPUT_TAGPREFIX: "core/"
|
||||||
INPUT_TAGBASE: ${{ steps.extract_tagbase.outputs.tagbase }}
|
INPUT_TAGBASE: ${{ steps.extract_tagbase.outputs.tagbase }}
|
||||||
|
|
@ -67,7 +67,7 @@ jobs:
|
||||||
}
|
}
|
||||||
|
|
||||||
- name: "Tagging extras/*"
|
- name: "Tagging extras/*"
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v9
|
||||||
env:
|
env:
|
||||||
INPUT_TAGPREFIX: "extras/"
|
INPUT_TAGPREFIX: "extras/"
|
||||||
INPUT_TAGBASE: ${{ steps.extract_tagbase.outputs.tagbase }}
|
INPUT_TAGBASE: ${{ steps.extract_tagbase.outputs.tagbase }}
|
||||||
|
|
|
||||||
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
|
@ -20,20 +20,20 @@ jobs:
|
||||||
run: echo "version=$(git describe --tags --always --match 'app/v*' | sed -n 's|app/\([^/-]*\)\(-.*\)\{0,1\}|\1|p')" >> $GITHUB_OUTPUT
|
run: echo "version=$(git describe --tags --always --match 'app/v*' | sed -n 's|app/\([^/-]*\)\(-.*\)\{0,1\}|\1|p')" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v4
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|
|
||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
||||||
path: build
|
path: build
|
||||||
|
|
||||||
- name: Upload GitHub
|
- name: Upload GitHub
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v3
|
||||||
with:
|
with:
|
||||||
files: build/*
|
files: build/*
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue