Skip to content

Commit

Permalink
ci: upgrade actions/checkout, migrate set-output to $GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover authored Jan 14, 2024
1 parent 91c39ae commit 02ef10e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
create-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: LinqLover/create-image@master
id: create-image
with:
Expand All @@ -21,7 +21,7 @@ jobs:
needs: create-image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@master
with:
name: image
Expand All @@ -45,7 +45,7 @@ jobs:
- build-screenshots
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
- run: rm -rf screenshots/ help/
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: date
run: echo "::set-output name=date::$(date +'%Y%m%d-%H%M%S')"
run: echo "date=$(date +'%Y%m%d-%H%M%S')" >> "$GITHUB_OUTPUT"
- uses: actions/download-artifact@master
with:
name: image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- id: smalltalkci
uses: hpi-swa/setup-smalltalkCI@v1
with:
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- id: smalltalkci
uses: hpi-swa/setup-smalltalkCI@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion scripts/download_vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e
# Download latest Trunk bundle for Linux/x64 and extract VM
wget https://files.squeak.org/nightly/Squeak-latest-64bit-Linux-x64.tar.gz
tar -zxvf Squeak-latest-64bit-Linux-x64.tar.gz --wildcards '*/bin'
echo ::set-output name=vm-path::"$(realpath Squeak*/bin/squeak)"
echo "vm-path=$(realpath Squeak*/bin/squeak)" >> "$GITHUB_OUTPUT"

1 comment on commit 02ef10e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.