Skip to content

Commit

Permalink
Merge pull request #2 from jeff-takaki/set-ouput-fix
Browse files Browse the repository at this point in the history
Fix set-output GHA deprecation warning (Software-5354)
  • Loading branch information
mwestphall authored Jan 22, 2024
2 parents 529a57e + 044a3b9 commit aa3df07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/new-preview-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ jobs:
if: startsWith(github.repository, 'osg-htc/')

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: 'recursive'
ref: master # Needed or it will checkout the wrong commit

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2.7.0

- name: Log in to OSG Harbor
uses: docker/login-action@v1
uses: docker/login-action@v2.2.0
with:
registry: hub.opensciencegrid.org
username: ${{ secrets.OSG_HARBOR_ROBOT_USER }}
password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }}

- name: Build and push Docker images
uses: docker/build-push-action@v2.2.0
uses: docker/build-push-action@v4
with:
context: .
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.repository, 'osg-htc/')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -37,7 +37,7 @@ jobs:
if: startsWith(github.repository, 'osg-htc/')
needs: Update-Submodules
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
validate-mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
Expand All @@ -25,7 +25,7 @@ jobs:
--strict
- id: format-github-repo
run: echo "::set-output name=repo-name::${GITHUB_REPOSITORY#*\/}"
run: echo "repo-name=${GITHUB_REPOSITORY#*\/}" >> $GITHUB_OUTPUT

- name: Test links
timeout-minutes: 10
Expand Down

0 comments on commit aa3df07

Please sign in to comment.