Skip to content

Commit

Permalink
ci: bump github actions version (synfig#3318)
Browse files Browse the repository at this point in the history
This is required because Node.js 16 actions are deprecated.
For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
ice0 committed Jan 29, 2024
1 parent bc5d01b commit a80fae9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commits-style.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Conventional commits style check

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install conventional commits linter
run: npm install --save-dev @commitlint/config-conventional @commitlint/cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/synfig-ci.yml
Expand Up @@ -47,15 +47,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare ccache timestamp
id: ccache_timestamp
run: echo "::set-output name=timestamp::`date "+%Y%m%d-%H%M%S"`"

- name: Download ccache archive
id: ccache-archive
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .ccache
key: ${{ matrix.os }}-ccache-${{ matrix.toolchain }}-${{ steps.ccache_timestamp.outputs.timestamp }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/synfig-stable.yml
Expand Up @@ -34,15 +34,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare ccache timestamp
id: ccache_timestamp
run: echo "::set-output name=timestamp::`date "+%Y%m%d-%H%M%S"`"

- name: Download ccache archive
id: ccache-archive
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .ccache
key: ${{ matrix.os }}-ccache-${{ matrix.toolchain }}-${{ steps.ccache_timestamp.outputs.timestamp }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/synfig-tests.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: "Synfig Studio (Check appdata.xml)"
run: |
Expand Down

0 comments on commit a80fae9

Please sign in to comment.