Skip to content

Commit

Permalink
Upgrade additional GHA versions
Browse files Browse the repository at this point in the history
- Address warning raised while running workflows that were missed in the last round of updates.

Signed-off-by: Wade Barnes <wade@neoterictech.ca>
  • Loading branch information
WadeBarnes committed Feb 7, 2024
1 parent 5317b8d commit e483ef0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildimage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Try load from cache
id: cache-image
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${GITHUB_WORKSPACE}/cache
key: ${{ env.CACHE_KEY_BUILD }}
Expand All @@ -46,19 +46,19 @@ jobs:
echo "::endgroup::"
- name: Log into the GitHub Container Registry
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build and push image
if: steps.cache-image.outputs.cache-hit != 'true'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
file: .github/workflows/build/Dockerfile.${{ env.UBUNTU_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildpackages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Try load from cache.
id: third-party-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/third-party-dependencies
key: ${{ format('third-party-dependencies-{0}', hashFiles(format('./build-scripts/{0}/build-3rd-parties.sh', inputs.UBUNTU_VERSION ))) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-lint
Expand Down

0 comments on commit e483ef0

Please sign in to comment.