Skip to content

Commit

Permalink
Merge pull request #721 from viperproject/dependabot/github_actions/a…
Browse files Browse the repository at this point in the history
…ll-3242cc494e

Bump the all group with 6 updates
  • Loading branch information
ArquintL authored Jan 25, 2024
2 parents 9953aa5 + 7ce55f5 commit ab5b822
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Gobra
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check license headers
uses: viperproject/check-license-header@v2
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
FAILURE_LEVEL: "error"
steps:
- name: Checkout Gobra
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Check that silicon & carbon reference same silver commit
Expand All @@ -49,11 +49,11 @@ jobs:
# used to enable Docker caching (see https://github.com/docker/build-push-action)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build image up to including stage 'build'
# note that the action's name is misleading: this step does NOT push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
load: true # make the built image available in docker (locally)
Expand Down Expand Up @@ -161,13 +161,13 @@ jobs:
- name: Upload RAM usage
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pidstat.txt
path: sync/pidstat.txt

- name: Build entire image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
load: true # make the built image available in docker (locally)
Expand Down Expand Up @@ -203,15 +203,15 @@ jobs:
- name: Login to Github Packages
if: env.SHOULD_DEPLOY == 'true'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push entire image
if: env.SHOULD_DEPLOY == 'true'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
file: workflow-container/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -35,7 +35,7 @@ jobs:
- name: Open a pull request
id: pr
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v5
if: env.PREV_VIPERSERVER_REF != env.CUR_VIPERSERVER_REF
with:
# Use viper-admin's token to workaround a restriction of GitHub.
Expand Down

0 comments on commit ab5b822

Please sign in to comment.