Skip to content

Commit

Permalink
CI: update github actions
Browse files Browse the repository at this point in the history
workflow-dispatch was not even working anymore.
  • Loading branch information
lpenz committed May 1, 2024
1 parent ef85a1a commit f00f9bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
omnilint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: docker://lpenz/omnilint:0.5
- uses: actions/checkout@v4.1.4
- uses: docker://lpenz/omnilint:0.5.2
status-page-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4.1.4
- uses: ./.github/actions/status-page
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/docker-build-distro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4.1.4
- run: >
sudo apt-get update;
sudo apt-get install -y --no-install-recommends debootstrap
Expand All @@ -22,7 +22,7 @@ jobs:
docker run --rm -u 0 -v "${PWD}:$PWD" -w "$PWD" -e PERSONAL_TOKEN docker-debian-releases
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
- uses: docker/setup-qemu-action@v2.1.0
- uses: docker/setup-qemu-action@v3.0.0
- run: sudo cp -Rd debootstrap_scripts/* /usr/share/debootstrap/scripts/
- id: branch
run: ./branch-info
Expand All @@ -33,7 +33,7 @@ jobs:
-i "${{ secrets.DOCKERHUB_USERNAME }}/${{ steps.branch.outputs.image }}"
"${{ steps.branch.outputs.dist }}"
"${{ steps.branch.outputs.arch }}"
- uses: docker/login-action@v2.1.0
- uses: docker/login-action@v3.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: benc-uk/workflow-dispatch@v1.2.1
- uses: benc-uk/workflow-dispatch@v1.2.3
with:
workflow: status-page-deploy
token: ${{ secrets.PERSONAL_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/status-page-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
status-page:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4.1.4
- uses: ./.github/actions/status-page
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
- run: rm -f .gitignore
- name: deploy
uses: JamesIves/github-pages-deploy-action@v4.4.1
uses: JamesIves/github-pages-deploy-action@v4.6.0
with:
branch: gh-pages
folder: .
Expand Down

0 comments on commit f00f9bd

Please sign in to comment.