Skip to content

Commit

Permalink
Merge pull request #221 from bdach/github-actions-bump
Browse files Browse the repository at this point in the history
Update github actions to resolve deprecation warnings
  • Loading branch information
smoogipoo authored Feb 22, 2024
2 parents 5ff4586 + 71cb74c commit 7ae4bc3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
Expand All @@ -37,16 +37,16 @@ jobs:
latest=false
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./osu.Server.Spectator
file: ./osu.Server.Spectator/Dockerfile
Expand Down Expand Up @@ -99,15 +99,15 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# the "Create Sentry release" step relies on accessing git history
# to find the SHA of the previous release and set the range of new commits in the release being deployed.
# do a full clone rather than a shallow one to allow it to do that.
fetch-depth: 0
-
name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.KUBERNETES_CONFIG_REPO_ACCESS_TOKEN }}
repository: ppy/osu-kubernetes-config
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
name: Unit testing
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install .NET 8.0.x
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"

Expand Down

0 comments on commit 7ae4bc3

Please sign in to comment.