Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IPFM-1484: Update actions #6

Merged
merged 4 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ${{ matrix.runner }}

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

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-swift-${{ hashFiles('Package.resolved') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: github.event.pull_request.merged == true && github.head_ref == 'create-release'

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

- name: Get app version
id: get-version
Expand All @@ -20,7 +20,7 @@ jobs:
title="${{ github.event.pull_request.title }}"
tag="${title:15}"

echo "::set-output name=tag::$tag"
echo "tag=$tag" >> $GITHUB_OUTPUT

- name: Update tag
uses: scoremedia/update-tag@v2
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
echo $output >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV

echo "::set-output name=changelog::$output"
echo "changelog=$output" >> $GITHUB_OUTPUT

- name: Create Release
id: create_release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
required-permission: admin

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create branch
run: git checkout -b create-release
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ runs:

- name: Set output
id: set-output
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { CHANGELOG_GENERATED_VALUE } = process.env
Expand Down