Skip to content

Commit

Permalink
Update more GH actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Oct 2, 2024
1 parent 0e052c3 commit 9b59695
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create release build
run: ./x.sh build-release
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install musl requisites
run: sudo apt install -y musl-dev musl-tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-admin-ui-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Check out the code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-authkit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
uses: actions/checkout@v4

- run: npm ci
working-directory: util/authkit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
main:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
working-directory: docs
- name: Build documentation
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Figure out build mode
- name: Determine build mode
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
options: '--name tobira_pg'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
# In these cases the results should also be saved, since they might
# indicate what went wrong. Hence `always()` instead of on `failure()`.
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: frontend/playwright-report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
github.actor == 'lkiesow'
) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: prepare deploy key
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/remove-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: github.repository_owner == 'elan-ev'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: prepare deploy key
env:
Expand All @@ -37,7 +37,7 @@ jobs:
if: github.event_name != 'delete'

- name: Delete GitHub deployment status
uses: bobheadxi/deployments@v1.4.0
uses: bobheadxi/deployments@v1.5.0
with:
# We would like to `delete-env` instead, but this requires additional
# permissions for the GITHUB_TOKEN. Fixing that seems to be fairly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-db-dump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: '0' # We need to do a full clone to be able to switch the branch later

Expand Down

0 comments on commit 9b59695

Please sign in to comment.