Skip to content

Commit

Permalink
ci: Update versions of deprecated actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
heinezen committed Oct 14, 2024
1 parent a66e08b commit 656ce84
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macosx-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
string(TIMESTAMP current_date "%Y-%m-%d-%H:%M:%S" UTC)
message("timestamp=${current_date}" >> $GITHUB_OUTPUT)
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-deps
with:
path: |
Expand All @@ -29,7 +29,7 @@ jobs:
restore-keys: |
${{ runner.os }}-deps-
- name: Cache ccache dir
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-ccache
with:
path: ~/Library/Caches/ccache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-22.04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sudo docker save openage-devenv:latest | gzip > /tmp/staging/devenv.tar.gz
shell: bash
- name: Publish the Docker image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: devenv-image-compressed.tar.gz
path: '/tmp/staging/devenv.tar.gz'
Expand All @@ -32,7 +32,7 @@ jobs:
run: mkdir -p /tmp/image
shell: bash
- name: Download devenv image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: devenv-image-compressed.tar.gz
path: '/tmp/image'
Expand All @@ -47,7 +47,7 @@ jobs:
mkdir -p /tmp/openage
tar -czvf /tmp/openage/openage-build.tar.gz ./build
- name: Publish build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: openage-build.tar.gz
path: '/tmp/openage/openage-build.tar.gz'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows-server-2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
vswhere -latest
shell: pwsh
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
Expand Down Expand Up @@ -78,15 +78,15 @@ jobs:
python -m openage --add-dll-search-path $DLL_PATH --version
shell: pwsh
- name: Publish build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: build-files
path: './build'
if-no-files-found: error
retention-days: 30
- name: Publish packaged artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: package-files
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows-server-2022.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
vswhere -latest
shell: pwsh
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
Expand Down Expand Up @@ -78,15 +78,15 @@ jobs:
python -m openage --add-dll-search-path $DLL_PATH --version
shell: pwsh
- name: Publish build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: build-files
path: './build'
if-no-files-found: error
retention-days: 30
- name: Publish packaged artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: package-files
Expand Down

0 comments on commit 656ce84

Please sign in to comment.