Skip to content

Commit

Permalink
🔧 Move away from deprecated set-output commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jemrobinson committed Apr 20, 2024
1 parent c1eb9ee commit 5fbdce8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_docker_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Create pull request
if: ${{ ! env.ACT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_package_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Create pull request
if: ${{ ! env.ACT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_python_dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Create pull request
if: ${{ ! env.ACT }}
Expand Down

0 comments on commit 5fbdce8

Please sign in to comment.